We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f37506 commit 635ddb8Copy full SHA for 635ddb8
tests/Integration/Models/ThreadTest.php
@@ -108,7 +108,7 @@ public function it_generates_a_slug_when_invalid_url_characters_provided()
108
$thread = Thread::factory()->make(['slug' => '한글 테스트']);
109
110
// When providing a slug with invalid url characters, a random 5 character string is returned.
111
- $this->assertRegExp('/\w{5}/', $thread->slug());
+ $this->assertMatchesRegularExpression('/\w{5}/', $thread->slug());
112
}
113
114
private function createThreadFromToday(): Thread
0 commit comments