Skip to content

Commit

Permalink
Update MiddlewareTest.php
Browse files Browse the repository at this point in the history
  • Loading branch information
SamRemis committed Aug 16, 2023
1 parent 5b9e3fd commit d57b31a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/MiddlewareTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function testCanTapIntoHandlerList()
$called = func_get_args();
}));
$handler = $list->resolve();
$handler(new Command('foo'), new Request('GET', 'http://exmaple.com'));
$handler(new Command('foo'), new Request('GET', 'http://example.com'));
Promise\Utils::queue()->run();
$this->assertCount(2, $called);
$this->assertInstanceOf(CommandInterface::class, $called[0]);
Expand Down

0 comments on commit d57b31a

Please sign in to comment.