Skip to content

Commit

Permalink
fix: correct Run Deploy tests (#1941)
Browse files Browse the repository at this point in the history
  • Loading branch information
glasnt authored May 31, 2024
1 parent b9494a7 commit b196013
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit b196013

Please sign in to comment.