Skip to content

Commit 5f586eb

Browse files
committed
Really fix the unit test this time
1 parent f41dd22 commit 5f586eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/Test/WebDriver/ExceptionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public function testFactory()
3939
{
4040
$out = Exception::factory(255, 'wtf');
4141
$this->assertTrue($out instanceof Exception\UnknownError);
42-
$this->assertTrue($out->getMessage() === 'An unknown server-side error occurred while processing the command.');
42+
$this->assertTrue($out->getMessage() === 'wtf');
4343

4444
$out = Exception::factory(Exception::SUCCESS);
4545
$this->assertTrue($out instanceof Exception\UnknownError);

0 commit comments

Comments
 (0)