Skip to content

Commit 7157df3

Browse files
greg0ireElectricMaxxx
authored andcommitted
Always pass a string as third argument (#189)
The type hint is string.
1 parent f729513 commit 7157df3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Functional/BaseTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,6 @@ protected function assertResponseSuccess(Response $response)
195195
$exception = $result->item(0)->nodeValue;
196196
}
197197

198-
$this->assertEquals(200, $response->getStatusCode(), $exception ? 'Exception: "'.$exception.'"' : null);
198+
$this->assertEquals(200, $response->getStatusCode(), $exception ? 'Exception: "'.$exception.'"' : '');
199199
}
200200
}

0 commit comments

Comments
 (0)