Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions run/helloworld/test/DeployTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* Class DeployTest.
* @group deploy
*/
class DeloyTest extends TestCase
class DeployTest extends TestCase
{
use DeploymentTrait;
use EventuallyConsistentTestTrait;
Expand Down Expand Up @@ -111,7 +111,7 @@ public function testService()
// Run the test.
$resp = $client->get('/');
$this->assertEquals('200', $resp->getStatusCode());
$this->assertEquals('Hello World!', (string) $resp->getBody());
$this->assertStringContainsString('Hello World!', (string) $resp->getBody());
}

public function getBaseUri()
Expand Down