From 826c33f6475f776e7f56c1dfd31fb8159bd06d84 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Tue, 17 Oct 2023 06:01:28 +0200 Subject: [PATCH] Correct typo --- tests/VirtualColumnTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/VirtualColumnTest.php b/tests/VirtualColumnTest.php index 23c11c0..8e4e5bc 100644 --- a/tests/VirtualColumnTest.php +++ b/tests/VirtualColumnTest.php @@ -51,7 +51,7 @@ class VirtualColumnTest extends TestCase $this->assertSame('xyz', $model->getOriginal('abc')); $this->assertSame(null, $model->data); - // Model can be retrieved after update & is structure correctly + // Model can be retrieved after update & is structured correctly $model = MyModel::first(); $this->assertSame('baz', $model->foo);