File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -701,11 +701,11 @@ public function testIsWithMultilineStrings()
701701
702702 $ this ->assertTrue (Str::is ($ multilineValue , $ multilineValue ));
703703 $ this ->assertTrue (Str::is ('* ' , $ multilineValue ));
704- $ this ->assertTrue (Str::is ('*namespace Illuminate \\ Tests \ \* ' , $ multilineValue ));
705- $ this ->assertFalse (Str::is ('namespace Illuminate \\ Tests \ \* ' , $ multilineValue ));
706- $ this ->assertFalse (Str::is ('*namespace Illuminate \\ Tests ' , $ multilineValue ));
704+ $ this ->assertTrue (Str::is ('*namespace Illuminate\Tests\* ' , $ multilineValue ));
705+ $ this ->assertFalse (Str::is ('namespace Illuminate\Tests\* ' , $ multilineValue ));
706+ $ this ->assertFalse (Str::is ('*namespace Illuminate\Tests ' , $ multilineValue ));
707707 $ this ->assertTrue (Str::is ('<?php* ' , $ multilineValue ));
708- $ this ->assertTrue (Str::is ('<?php*namespace Illuminate \\ Tests \ \* ' , $ multilineValue ));
708+ $ this ->assertTrue (Str::is ('<?php*namespace Illuminate\Tests\* ' , $ multilineValue ));
709709 $ this ->assertFalse (Str::is ('use Exception; ' , $ multilineValue ));
710710 $ this ->assertFalse (Str::is ('use Exception;* ' , $ multilineValue ));
711711 $ this ->assertTrue (Str::is ('*use Exception; ' , $ multilineValue ));
Original file line number Diff line number Diff line change @@ -1004,11 +1004,11 @@ public function testIsWithMultilineStrings()
10041004
10051005 $ this ->assertTrue ($ this ->stringable ($ multilineValue )->is ($ multilineValue ));
10061006 $ this ->assertTrue ($ this ->stringable ($ multilineValue )->is ('* ' ));
1007- $ this ->assertTrue ($ this ->stringable ($ multilineValue )->is ('*namespace Illuminate \\ Tests \ \* ' ));
1008- $ this ->assertFalse ($ this ->stringable ($ multilineValue )->is ('namespace Illuminate \\ Tests \ \* ' ));
1009- $ this ->assertFalse ($ this ->stringable ($ multilineValue )->is ('*namespace Illuminate \\ Tests ' ));
1007+ $ this ->assertTrue ($ this ->stringable ($ multilineValue )->is ('*namespace Illuminate\Tests\* ' ));
1008+ $ this ->assertFalse ($ this ->stringable ($ multilineValue )->is ('namespace Illuminate\Tests\* ' ));
1009+ $ this ->assertFalse ($ this ->stringable ($ multilineValue )->is ('*namespace Illuminate\Tests ' ));
10101010 $ this ->assertTrue ($ this ->stringable ($ multilineValue )->is ('<?php* ' ));
1011- $ this ->assertTrue ($ this ->stringable ($ multilineValue )->is ('<?php*namespace Illuminate \\ Tests \ \* ' ));
1011+ $ this ->assertTrue ($ this ->stringable ($ multilineValue )->is ('<?php*namespace Illuminate\Tests\* ' ));
10121012 $ this ->assertFalse ($ this ->stringable ($ multilineValue )->is ('use Exception; ' ));
10131013 $ this ->assertFalse ($ this ->stringable ($ multilineValue )->is ('use Exception;* ' ));
10141014 $ this ->assertTrue ($ this ->stringable ($ multilineValue )->is ('*use Exception; ' ));
You can’t perform that action at this time.
0 commit comments