From fcbc64b1a8f2023f6cfd5bcbfb10bd40d2322c9f Mon Sep 17 00:00:00 2001 From: Dariusz Ruminski Date: Sat, 6 Oct 2018 10:36:23 +0200 Subject: [PATCH] adjust fail description hardcoded in testcase to mach new one --- tests/unit/Framework/TestCaseTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/Framework/TestCaseTest.php b/tests/unit/Framework/TestCaseTest.php index 8f4383ced9f..f879b586590 100644 --- a/tests/unit/Framework/TestCaseTest.php +++ b/tests/unit/Framework/TestCaseTest.php @@ -254,7 +254,7 @@ public function testExceptionWithWrongMessage() $this->assertEquals(1, $result->failureCount()); $this->assertCount(1, $result); $this->assertEquals( - "Failed asserting that exception message 'A runtime error occurred' contains 'A logic error occurred'.", + "Failed asserting that exception message 'A runtime error occurred' equals 'A logic error occurred'.", $test->getStatusMessage() ); }