Skip to content

Commit 141e693

Browse files
committed
Update DeferPropTest.php
1 parent da906d5 commit 141e693

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/DeferPropTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ class DeferPropTest extends TestCase
1010
public function test_can_invoke(): void
1111
{
1212
$deferProp = new DeferProp(function () {
13-
return 'A lazy value';
13+
return 'A deferred value';
1414
});
1515

16-
$this->assertSame('A lazy value', $deferProp());
16+
$this->assertSame('A deferred value', $deferProp());
1717
}
1818

1919
public function test_can_resolve_bindings_when_invoked(): void

0 commit comments

Comments
 (0)