diff options
| author | mlunzena <lunzenauer@elan-ev.de> | 2021-08-18 10:19:43 +0200 |
|---|---|---|
| committer | mlunzena <lunzenauer@elan-ev.de> | 2021-08-18 10:22:01 +0200 |
| commit | 607b1e07f0768227066e528a3792eaedaec941aa (patch) | |
| tree | 94dbaaccd2e39f7064b0248c74eff1292b12abd0 /tests/jsonapi/UserEventsIcalTest.php | |
| parent | cf997f4c7d1fc0474fea242c6d4e9206a0bc3521 (diff) | |
update Codeception and phpunit, refs #81
Diffstat (limited to 'tests/jsonapi/UserEventsIcalTest.php')
| -rw-r--r-- | tests/jsonapi/UserEventsIcalTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/jsonapi/UserEventsIcalTest.php b/tests/jsonapi/UserEventsIcalTest.php index 359763f..bf3d2ba 100644 --- a/tests/jsonapi/UserEventsIcalTest.php +++ b/tests/jsonapi/UserEventsIcalTest.php @@ -42,7 +42,7 @@ class UserEventsIcalTest extends \Codeception\Test\Unit $response = $app($requestBuilder->getRequest(), new \Slim\Http\Response()); $this->tester->assertEquals(200, $response->getStatusCode()); - $this->tester->assertContains('BEGIN:VEVENT', (string) $response->getBody()); - $this->tester->assertContains('SUMMARY:blypyp', (string) $response->getBody()); + $this->tester->assertStringContainsString('BEGIN:VEVENT', (string) $response->getBody()); + $this->tester->assertStringContainsString('SUMMARY:blypyp', (string) $response->getBody()); } } |
