Skip to content

Commit fcdf1cd

Browse files
committed
updated .travis.yml
1 parent 913d5b6 commit fcdf1cd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ script:
77
- dartfmt -n ./lib --set-exit-if-changed
88
- pub get
99
- pub global activate coverage
10-
- pub run test/rx_storage_test.dart
10+
- pub run --enable-asserts test/rx_storage_test.dart
1111
- dart
1212
--disable-service-auth-codes
1313
--enable-vm-service=8111

test/stream_extensions/map_not_null_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ void main() {
2222
test('Rx.mapNotNull.shouldThrowA', () {
2323
expect(
2424
() => Stream.value(42).mapNotNull(null),
25-
throwsA(const TypeMatcher<AssertionError>()),
25+
throwsA(isA<AssertionError>()),
2626
);
2727
});
2828

0 commit comments

Comments
 (0)