diff --git a/fixtures/futures/tests/bindings/test_futures.ts b/fixtures/futures/tests/bindings/test_futures.ts index c0155db4..9139fc2f 100644 --- a/fixtures/futures/tests/bindings/test_futures.ts +++ b/fixtures/futures/tests/bindings/test_futures.ts @@ -125,11 +125,7 @@ function checkRemainingFutures(t: Asserts) { await asyncTest("Async methods", async (t) => { const megaphone = newMegaphone(); - let helloAlice = await t.asyncMeasure( - async () => megaphone.sayAfter(500, "Alice"), - 500, - 20, - ); + const helloAlice = await megaphone.sayAfter(500, "Alice"); t.assertEqual("HELLO, ALICE!", helloAlice); checkRemainingFutures(t); t.end();