Remove duplicated dart test

This commit is contained in:
Michal Dorner
2020-10-18 20:58:36 +02:00
parent cd21268493
commit 83a6323aa9

View File

@@ -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)));
});
}