You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$this->assertSame('Failed asserting that two arrays are identical.', $e->getMessage());
350
+
}
351
+
352
+
$response->assertJsonCount(3, 'data');
353
+
354
+
try {
355
+
$response->assertJsonCount(2, 'data');
356
+
$this->fail('xxxx');
357
+
} catch (AssertionFailedError$e) {
358
+
$this->assertSame("Failed to assert that the response count matched the expected 2\nFailed asserting that actual size 3 matches expected size 2.", $e->getMessage());
0 commit comments