Skip to content

Commit

Permalink
Fix tests failed on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
nguereza-tony committed Dec 4, 2023
1 parent 523a61a commit bfba48a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Filter/ArrayFilterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public function testJson(): void
$this->assertEquals(1.4, ArrayFilter::json(1.4));
$this->assertEquals('[1,2]', ArrayFilter::json([1, 2]));
$this->assertEquals('{"a":1,"b":2}', ArrayFilter::json(['a' => 1, 'b' => 2]));
$this->assertEquals('{
$this->assertCommandOutput('{
"a": 1,
"b": 2
}', ArrayFilter::json(['a' => 1, 'b' => 2], true));
Expand Down

0 comments on commit bfba48a

Please sign in to comment.