Skip to content

Commit a0b75f9

Browse files
committed
Fix argument count error
1 parent e42f388 commit a0b75f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/AwaitTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public function testExecutionOrder()
2020

2121
$promises[] = React\Async\async(function () use ($deferred) {
2222
print 'c';
23-
$deferred->resolve();
23+
$deferred->resolve(null);
2424
print 'd';
2525
})();
2626

0 commit comments

Comments
 (0)