Skip to content

Commit

Permalink
Update to latest PHPUnit 10 syntax
Browse files Browse the repository at this point in the history
Signed-off-by: Abdul Malik Ikhsan <[email protected]>
  • Loading branch information
samsonasik committed Nov 4, 2024
1 parent f9894b7 commit 0606624
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/StringToLowerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public function testCaseInsensitiveEncoding(): void
self::assertSame($output, $filter($input));
}
} catch (Exception\ExtensionNotLoadedException $e) {
self::assertContains('mbstring is required', $e->getMessage());
self::assertStringContainsString('mbstring is required', $e->getMessage());
}
}

Expand Down

0 comments on commit 0606624

Please sign in to comment.