We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 913d5b6 commit fcdf1cdCopy full SHA for fcdf1cd
.travis.yml
@@ -7,7 +7,7 @@ script:
7
- dartfmt -n ./lib --set-exit-if-changed
8
- pub get
9
- pub global activate coverage
10
- - pub run test/rx_storage_test.dart
+ - pub run --enable-asserts test/rx_storage_test.dart
11
- dart
12
--disable-service-auth-codes
13
--enable-vm-service=8111
test/stream_extensions/map_not_null_test.dart
@@ -22,7 +22,7 @@ void main() {
22
test('Rx.mapNotNull.shouldThrowA', () {
23
expect(
24
() => Stream.value(42).mapNotNull(null),
25
- throwsA(const TypeMatcher<AssertionError>()),
+ throwsA(isA<AssertionError>()),
26
);
27
});
28
0 commit comments