Skip to content

Commit 187cfc0

Browse files
committed
Another sentence used;
1 parent fc504ee commit 187cfc0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/Casts/StringTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ protected function setUp(): void
1818

1919
public function testString(): void
2020
{
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']);
2222

2323
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);
2525

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"]);
2727

2828
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);
3030
}
3131
}

0 commit comments

Comments
 (0)