diff options
author | 2023-08-29 15:31:06 -0700 | |
---|---|---|
committer | 2023-08-29 15:31:06 -0700 | |
commit | 5d84ef778066a6221630d82b7dc6b01aeddc3c26 (patch) | |
tree | 228e1ebae88207679fb60e08afce7b7656609758 /src/cli/test_command.zig | |
parent | a77ed151afd9ae946b500c3bac6cf1fdb18550ad (diff) | |
download | bun-5d84ef778066a6221630d82b7dc6b01aeddc3c26.tar.gz bun-5d84ef778066a6221630d82b7dc6b01aeddc3c26.tar.zst bun-5d84ef778066a6221630d82b7dc6b01aeddc3c26.zip |
Rename `uws_event_loop` to `event_loop_handle`
Diffstat (limited to 'src/cli/test_command.zig')
-rw-r--r-- | src/cli/test_command.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli/test_command.zig b/src/cli/test_command.zig index 0af54f61b..4fce7759a 100644 --- a/src/cli/test_command.zig +++ b/src/cli/test_command.zig @@ -835,7 +835,7 @@ pub const TestCommand = struct { vm.eventLoop().tickPossiblyForever(); while (true) { - while (vm.eventLoop().tasks.count > 0 or vm.active_tasks > 0 or vm.uws_event_loop.?.active > 0) { + while (vm.eventLoop().tasks.count > 0 or vm.active_tasks > 0 or vm.event_loop_handle.?.active > 0) { vm.tick(); vm.eventLoop().autoTickActive(); } |