Skip to content

Commit b196013

Browse files
authored
fix: correct Run Deploy tests (#1941)
1 parent b9494a7 commit b196013

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

run/helloworld/test/DeployTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* Class DeployTest.
3131
* @group deploy
3232
*/
33-
class DeloyTest extends TestCase
33+
class DeployTest extends TestCase
3434
{
3535
use DeploymentTrait;
3636
use EventuallyConsistentTestTrait;
@@ -111,7 +111,7 @@ public function testService()
111111
// Run the test.
112112
$resp = $client->get('/');
113113
$this->assertEquals('200', $resp->getStatusCode());
114-
$this->assertEquals('Hello World!', (string) $resp->getBody());
114+
$this->assertStringContainsString('Hello World!', (string) $resp->getBody());
115115
}
116116

117117
public function getBaseUri()

0 commit comments

Comments
 (0)