Remove duplicated dart test

This commit is contained in:
Michal Dorner 2020-10-18 20:58:36 +02:00
parent cd21268493
commit 83a6323aa9
No known key found for this signature in database
GPG key ID: 9EEE04B48DA36786

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