Skip to content

Commit

Permalink
Always pass a string as third argument (#189) (#190)
Browse files Browse the repository at this point in the history
The type hint is string.
  • Loading branch information
ElectricMaxxx authored Jan 13, 2019
1 parent 6dbe5fd commit f2dbe32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Functional/BaseTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,6 @@ protected function assertResponseSuccess(Response $response)
$exception = $result->item(0)->nodeValue;
}

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

0 comments on commit f2dbe32

Please sign in to comment.