Skip to content

Commit d98ba35

Browse files
committed
Fix testing against legacy LibEventLoop
1 parent 8bbced8 commit d98ba35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/DuplexResourceStreamIntegrationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ function () {
3030
return function_exists('event_base_new');
3131
},
3232
function () {
33-
return class_exists('React\EventLoop\ExtLibeventLoop') ? new ExtLibeventLoop() : LibEventLoop();
33+
return class_exists('React\EventLoop\ExtLibeventLoop') ? new ExtLibeventLoop() : new LibEventLoop();
3434
}
3535
),
3636
array(

0 commit comments

Comments
 (0)