Skip to content

Commit

Permalink
Replace assertNotContains() by assertStringNotContainsString()
Browse files Browse the repository at this point in the history
  • Loading branch information
webeweb committed Dec 30, 2020
1 parent 9235987 commit 9a76e41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Serializer/ResponseDeserializerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ public function testCleanResponse(): void {

$res = TestResponseDeserializer::cleanResponse($arg);

$this->assertNotContains("True", $res);
$this->assertNotContains("False", $res);
$this->assertStringNotContainsString("True", $res);
$this->assertStringNotContainsString("False", $res);
}

/**
Expand Down

0 comments on commit 9a76e41

Please sign in to comment.