From 83a6323aa99fe257896d9cd43e2c1f643fb32e05 Mon Sep 17 00:00:00 2001 From: Michal Dorner Date: Sun, 18 Oct 2020 20:58:36 +0200 Subject: [PATCH] Remove duplicated dart test --- reports/dart/test/main_test.dart | 4 ---- 1 file changed, 4 deletions(-) diff --git a/reports/dart/test/main_test.dart b/reports/dart/test/main_test.dart index a90f873..91f944b 100644 --- a/reports/dart/test/main_test.dart +++ b/reports/dart/test/main_test.dart @@ -23,9 +23,5 @@ void main() { test('Exception in test', () { throw Exception('Some error'); }); - - test('Timeout test', () { - sleep(Duration(milliseconds: 1)); - }, timeout: Timeout(Duration(microseconds: 1))); }); }