Skip to content

Commit 0df6bee

Browse files
committed
Fix CI
1 parent 6a3da51 commit 0df6bee

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

packages/custom_lint/test/mock_fs.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,12 @@ class _StdoutOverride implements Stdout {
102102
void writeln([Object? object = '']) {
103103
_controller.add('$object\n');
104104
}
105+
106+
@override
107+
String get lineTerminator => _stdout.lineTerminator;
108+
109+
@override
110+
set lineTerminator(String value) => _stdout.lineTerminator = value;
105111
}
106112

107113
/// Used to override file I/O with an in-memory file system for testing.

0 commit comments

Comments
 (0)