Skip to content

Commit 3f06a6f

Browse files
committed
more tests
1 parent 9967dac commit 3f06a6f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test/listenable_stream_test.dart

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -299,8 +299,10 @@ void main() {
299299
});
300300

301301
test('Has no error', () {
302-
expect(() => ValueNotifier(0).toValueStream().requireError,
303-
throwsA(anything));
302+
expect(
303+
() => ValueNotifier(0).toValueStream().requireError,
304+
throwsA(anything),
305+
);
304306

305307
expect(
306308
() => ValueNotifier(0).toValueStream(replayValue: true).requireError,

0 commit comments

Comments
 (0)