File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -57,8 +57,8 @@ public function testPrivateAlias()
57
57
58
58
$ tester = new ApplicationTester ($ application );
59
59
$ tester ->run (['command ' => 'debug:container ' , '--show-hidden ' => true ]);
60
- $ this ->assertNotContains ('public ' , $ tester ->getDisplay ());
61
- $ this ->assertNotContains ('private_alias ' , $ tester ->getDisplay ());
60
+ $ this ->assertStringNotContainsString ('public ' , $ tester ->getDisplay ());
61
+ $ this ->assertStringNotContainsString ('private_alias ' , $ tester ->getDisplay ());
62
62
63
63
$ tester ->run (['command ' => 'debug:container ' ]);
64
64
$ this ->assertStringContainsString ('public ' , $ tester ->getDisplay ());
@@ -77,7 +77,7 @@ public function testIgnoreBackslashWhenFindingService(string $validServiceId)
77
77
78
78
$ tester = new ApplicationTester ($ application );
79
79
$ tester ->run (['command ' => 'debug:container ' , 'name ' => $ validServiceId ]);
80
- $ this ->assertNotContains ('No services found ' , $ tester ->getDisplay ());
80
+ $ this ->assertStringNotContainsString ('No services found ' , $ tester ->getDisplay ());
81
81
}
82
82
83
83
public function testDescribeEnvVars ()
You can’t perform that action at this time.
0 commit comments