File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change 2020use Symfony \Component \Console \Tests \Fixtures \DummyOutput ;
2121
2222/**
23- * Console logger test.
24- *
2523 * @author Kévin Dunglas <dunglas@gmail.com>
2624 * @author Jordi Boggiano <j.boggiano@seld.be>
2725 */
@@ -157,9 +155,9 @@ public function testContextReplacement()
157155 public function testObjectCastToString ()
158156 {
159157 if (method_exists ($ this , 'createPartialMock ' )) {
160- $ dummy = $ this ->createPartialMock (' Symfony\Component\Console\Tests\Logger\ DummyTest' , ['__toString ' ]);
158+ $ dummy = $ this ->createPartialMock (DummyTest::class , ['__toString ' ]);
161159 } else {
162- $ dummy = $ this ->createPartialMock (' Symfony\Component\Console\Tests\Logger\ DummyTest' , ['__toString ' ]);
160+ $ dummy = $ this ->createPartialMock (DummyTest::class , ['__toString ' ]);
163161 }
164162 $ dummy ->method ('__toString ' )->willReturn ('DUMMY ' );
165163
You can’t perform that action at this time.
0 commit comments