Skip to content

Commit 875a963

Browse files
committed
Use assertions
1 parent 4f0653b commit 875a963

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/StaticMethodMock.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ public static function handleStaticCall(string $className, string $method, array
7575
}
7676
$expected = array_shift($mock->expectations);
7777
$mock->testCase->assertEquals($expected['method'], strtoupper($method), sprintf('StaticMethodMock method mismatch for %s::%s', $className, $method));
78-
var_dump([$expected['arguments'], $arguments]);
7978
$mock->testCase->assertEquals($expected['arguments'], $arguments, sprintf('StaticMethodMock arguments mismatch for %s::%s', $className, $method));
8079
if ($expected['exception'] !== null) {
8180
throw $expected['exception'];

0 commit comments

Comments
 (0)