Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
canihavesomecoffee committed Feb 20, 2022
1 parent 6e12d57 commit 13cf94b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Route/SearchRouteTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public function testSearchByName()
['id' => "1", 'seriesName' => 'foo'],
['id' => "3", 'seriesName' => 'foo bar']
];
$options = ['query' => ["q" => $name]];
$options = ['query' => ["query" => $name]];
$this->setMockData($return, $options);
$instance = new SearchRoute($this->parent);
$results = $instance->search($name);
Expand Down

0 comments on commit 13cf94b

Please sign in to comment.