Skip to content

Commit 76b314a

Browse files
Fix
1 parent 89b9c5d commit 76b314a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PHPUnit/Framework/Assert.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2195,7 +2195,7 @@ public static function assertJsonStringEqualsJsonString($expectedJson, $actualJs
21952195
$expected = json_decode($expectedJson);
21962196
$actual = json_decode($actualJson);
21972197

2198-
return self::assertEquals($expected, $actual, $message);
2198+
self::assertEquals($expected, $actual, $message);
21992199
}
22002200

22012201
/**

0 commit comments

Comments
 (0)