From b0bdf53600d4ac459879698ec2c59ad7120d65f2 Mon Sep 17 00:00:00 2001 From: Huang Yi Date: Fri, 17 Jan 2020 14:30:53 +0800 Subject: [PATCH] Fix tests --- tests/Commands/FswatchTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Commands/FswatchTest.php b/tests/Commands/FswatchTest.php index d887222..95da682 100644 --- a/tests/Commands/FswatchTest.php +++ b/tests/Commands/FswatchTest.php @@ -37,7 +37,7 @@ public function test_parse_events() { $events = $this->makeFswatch()->parseEvents('/watched/dir 2'); - $this->assertEquals([['path' => '/watched/dir', 'events' => 2]], $events); + $this->assertEquals([['/watched/dir', 2]], $events); }