Index: pkg/scheduled_test/test/descriptor/async_test.dart |
diff --git a/pkg/scheduled_test/test/descriptor/async_test.dart b/pkg/scheduled_test/test/descriptor/async_test.dart |
index 1726345cdae091efca0ffdf1b6663f30087d01cf..961f528a66b169263dcbdbd53e3688024dcc4121 100644 |
--- a/pkg/scheduled_test/test/descriptor/async_test.dart |
+++ b/pkg/scheduled_test/test/descriptor/async_test.dart |
@@ -121,23 +121,4 @@ void main() { |
matches(r"^Directory not found: '[^']+[\\/]dir'\.$")); |
}); |
}, passing: ['test 2']); |
- |
- expectTestsPass("async().load() fails", () { |
- test('test', () { |
- scheduleSandbox(); |
- |
- expect(d.async(new Future.value(d.file('name.txt'))) |
- .load('path').toList(), |
- throwsA(equals("AsyncDescriptors don't support load()."))); |
- }); |
- }); |
- |
- expectTestsPass("async().read() fails", () { |
- test('test', () { |
- scheduleSandbox(); |
- |
- expect(d.async(new Future.value(d.file('name.txt'))).read().toList(), |
- throwsA(equals("AsyncDescriptors don't support read()."))); |
- }); |
- }); |
} |