Skip to content

Commit

Permalink
fix failed test
Browse files Browse the repository at this point in the history
  • Loading branch information
skie committed Sep 17, 2024
1 parent d66104e commit 014d09a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/TestCase/Filter/LookupFilterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ public function testToArray(): void
$result = $this->lookupFilter->toArray();

$this->assertArrayHasKey('autocompleteUrl', $result);
$this->assertEquals('http://localhost/authors/autocomplete', $result['autocompleteUrl']);
$this->assertEquals('/authors/autocomplete', $result['autocompleteUrl']);
$this->assertIsArray($result);
$this->assertArrayHasKey('type', $result);
$this->assertEquals('autocomplete', $result['type']);
Expand Down

0 comments on commit 014d09a

Please sign in to comment.