From 7379f6ff42e698a68221ed11e3867d4f03ce7b1d Mon Sep 17 00:00:00 2001 From: mcmah309 Date: Sun, 28 Jan 2024 22:27:53 +0000 Subject: [PATCH] chore: fix lint --- test/option/option_future_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/option/option_future_test.dart b/test/option/option_future_test.dart index 56cd2cb..2d8d571 100644 --- a/test/option/option_future_test.dart +++ b/test/option/option_future_test.dart @@ -238,7 +238,7 @@ void main() { double x = await doubleNone()[$]; return Some((val + x).toInt()); }); - final x = await earlyReturn(2); + final _ = await earlyReturn(2); expect(await earlyReturn(2), const None()); });