Skip to content

Commit 4b3dcf6

Browse files
authored
Merge pull request #26 from Korri/patch-1
Fix expected and actual argument order
2 parents 9c3c2ac + 6a65b7d commit 4b3dcf6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Drivers/JsonDriver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ public function extension(): string
2424

2525
public function match($expected, $actual)
2626
{
27-
Assert::assertJsonStringEqualsJsonString($actual, $expected);
27+
Assert::assertJsonStringEqualsJsonString($expected, $actual);
2828
}
2929
}

0 commit comments

Comments
 (0)