diff options
| author | Loris Cro <kappaloris@gmail.com> | 2020-09-29 11:18:35 +0200 |
|---|---|---|
| committer | Loris Cro <kappaloris@gmail.com> | 2020-09-29 11:18:35 +0200 |
| commit | a45a4230bc2ef67dca4bd3267863695d6b04adfa (patch) | |
| tree | 9c4f714a633166bb0d9522cfc562268b779b4fd2 /lib/std/event/future.zig | |
| parent | a0c0f9ead53dab4f558dbb51cc8a49961fc6984f (diff) | |
| download | zig-a45a4230bc2ef67dca4bd3267863695d6b04adfa.tar.gz zig-a45a4230bc2ef67dca4bd3267863695d6b04adfa.zip | |
Fix std.event.Future
Signed-off-by: Loris Cro <kappaloris@gmail.com>
Diffstat (limited to 'lib/std/event/future.zig')
| -rw-r--r-- | lib/std/event/future.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/event/future.zig b/lib/std/event/future.zig index c9777288e4..40c7845d53 100644 --- a/lib/std/event/future.zig +++ b/lib/std/event/future.zig @@ -95,7 +95,7 @@ test "std.event.Future" { // TODO provide a way to run tests in evented I/O mode if (!std.io.is_async) return error.SkipZigTest; - const handle = async testFuture(); + testFuture(); } fn testFuture() void { |
