File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/Symfony/Component/AssetMapper/Tests/Command Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -74,14 +74,14 @@ public function testCommandFiltersVendor()
74
74
$ this ->assertSame (0 , $ res );
75
75
$ this ->assertStringContainsString ('vendor/lodash/ ' , $ tester ->getDisplay ());
76
76
$ this ->assertStringContainsString ('@hotwired/stimulus ' , $ tester ->getDisplay ());
77
- $ this ->assertStringNotContainsString ('dir2 ' .DIRECTORY_SEPARATOR , $ tester ->getDisplay ());
77
+ $ this ->assertStringNotContainsString ('dir2 ' .\ DIRECTORY_SEPARATOR , $ tester ->getDisplay ());
78
78
79
79
$ tester = new CommandTester ($ command );
80
80
$ res = $ tester ->execute (['--no-vendor ' => true ]);
81
81
82
82
$ this ->assertSame (0 , $ res );
83
83
$ this ->assertStringNotContainsString ('vendor/lodash/ ' , $ tester ->getDisplay ());
84
84
$ this ->assertStringNotContainsString ('@hotwired/stimulus ' , $ tester ->getDisplay ());
85
- $ this ->assertStringContainsString ('dir2 ' .DIRECTORY_SEPARATOR , $ tester ->getDisplay ());
85
+ $ this ->assertStringContainsString ('dir2 ' .\ DIRECTORY_SEPARATOR , $ tester ->getDisplay ());
86
86
}
87
87
}
You can’t perform that action at this time.
0 commit comments