diff options
author | 2022-07-08 21:06:14 +0200 | |
---|---|---|
committer | 2022-07-08 21:06:14 +0200 | |
commit | a966213cd7e5dc2fdac90a4d54dd4dd6ebe46ea9 (patch) | |
tree | 00a257c21d7e317a7c7df4a849413a841e29b498 /tests/Actions/ListActionTest.php | |
parent | 22c10941dc5086f6519f9f526348d68700c57e84 (diff) | |
download | rss-bridge-a966213cd7e5dc2fdac90a4d54dd4dd6ebe46ea9.tar.gz rss-bridge-a966213cd7e5dc2fdac90a4d54dd4dd6ebe46ea9.tar.zst rss-bridge-a966213cd7e5dc2fdac90a4d54dd4dd6ebe46ea9.zip |
refactor: inject the action params via its execute method (#2907)
Diffstat (limited to 'tests/Actions/ListActionTest.php')
-rw-r--r-- | tests/Actions/ListActionTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Actions/ListActionTest.php b/tests/Actions/ListActionTest.php index 5056050e..f3d06db6 100644 --- a/tests/Actions/ListActionTest.php +++ b/tests/Actions/ListActionTest.php @@ -85,7 +85,7 @@ class ListActionTest extends TestCase $action = $actionFactory->create('list'); ob_start(); - $action->execute(); + $action->execute([]); $this->data = ob_get_contents(); ob_clean(); ob_end_flush(); |