File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,14 +18,14 @@ protected function setUp(): void
18
18
19
19
public function testString (): void
20
20
{
21
- $ model = Casting::query ()->create (['stringContent ' => " If I'ma shoot, I shoot to kill " ]);
21
+ $ model = Casting::query ()->create (['stringContent ' => ' Home is behind The world ahead And there are many paths to tread ' ]);
22
22
23
23
self ::assertIsString ($ model ->stringContent );
24
- self ::assertEquals (" If I'ma shoot, I shoot to kill " , $ model ->stringContent );
24
+ self ::assertEquals (' Home is behind The world ahead And there are many paths to tread ' , $ model ->stringContent );
25
25
26
- $ model ->update (['stringContent ' => ' Do what I want to do at will ' ]);
26
+ $ model ->update (['stringContent ' => " Losing hope, don't mean I'm hopeless And maybe all I need is time " ]);
27
27
28
28
self ::assertIsString ($ model ->stringContent );
29
- self ::assertEquals (' Do what I want to do at will ' , $ model ->stringContent );
29
+ self ::assertEquals (" Losing hope, don't mean I'm hopeless And maybe all I need is time " , $ model ->stringContent );
30
30
}
31
31
}
You can’t perform that action at this time.
0 commit comments