Skip to content

Commit 7744220

Browse files
committed
Remove useless assertions
1 parent 34e1abe commit 7744220

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

Tests/DependencyInjection/Compiler/ShortcodeCompilerPassTest.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,16 +64,16 @@ public function tagged_services_are_added_as_handlers_to_facade()
6464
$this->compilerPass->process($this->containerBuilder);
6565
}
6666

67-
/** @test */
67+
/**
68+
* @test
69+
*/
6870
public function no_tagged_services_do_no_harm()
6971
{
7072
$this->containerBuilder->expects($this->once())
7173
->method('findTaggedServiceIds')
7274
->willReturn([]);
7375

7476
$this->compilerPass->process($this->containerBuilder);
75-
76-
$this->assertTrue(true);
7777
}
7878

7979
/** @test */
@@ -119,7 +119,9 @@ public function shortcode_guide_service_gets_configured_if_set()
119119
$this->compilerPass->process($this->containerBuilder);
120120
}
121121

122-
/** @test */
122+
/**
123+
* @test
124+
*/
123125
public function missing_shortcode_guide_service_does_no_harm()
124126
{
125127
$this->containerBuilder->expects($this->once())
@@ -132,7 +134,5 @@ public function missing_shortcode_guide_service_does_no_harm()
132134
->willReturn(false);
133135

134136
$this->compilerPass->process($this->containerBuilder);
135-
136-
$this->assertTrue(true);
137137
}
138138
}

0 commit comments

Comments
 (0)