We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9494a7 commit b196013Copy full SHA for b196013
run/helloworld/test/DeployTest.php
@@ -30,7 +30,7 @@
30
* Class DeployTest.
31
* @group deploy
32
*/
33
-class DeloyTest extends TestCase
+class DeployTest extends TestCase
34
{
35
use DeploymentTrait;
36
use EventuallyConsistentTestTrait;
@@ -111,7 +111,7 @@ public function testService()
111
// Run the test.
112
$resp = $client->get('/');
113
$this->assertEquals('200', $resp->getStatusCode());
114
- $this->assertEquals('Hello World!', (string) $resp->getBody());
+ $this->assertStringContainsString('Hello World!', (string) $resp->getBody());
115
}
116
117
public function getBaseUri()
0 commit comments