Skip to content

Commit 7111ce9

Browse files
authored
Update MetaServiceWhenTest.php
1 parent 92f0076 commit 7111ce9

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

tests/MetaServiceWhenTest.php

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66

77
class MetaServiceWhenTest extends TestCase
88
{
9-
/** @test */
10-
public function it_sets_tags_when_the_condition_is_true()
9+
public function test_it_sets_tags_when_the_condition_is_true()
1110
{
1211
$this->service->set('description', 'hello');
1312

@@ -26,8 +25,7 @@ function ($meta) {
2625
$this->assertRenders('<meta name="robots" content="noindex nofollow">');
2726
}
2827

29-
/** @test */
30-
public function it_does_not_set_tags_when_the_condition_is_false()
28+
public function test_it_does_not_set_tags_when_the_condition_is_false()
3129
{
3230
$this->assertCount(0, $this->service->tags());
3331

@@ -46,8 +44,7 @@ function ($meta) {
4644
$this->assertRenders('<link rel="canonical" href="/users" />');
4745
}
4846

49-
/** @test */
50-
public function it_allows_fluent_calls()
47+
public function test_it_allows_fluent_calls()
5148
{
5249
$this->assertCount(0, $this->service->tags());
5350

0 commit comments

Comments
 (0)