We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ece759 commit ca37274Copy full SHA for ca37274
lib/src/cli/flutter_cli.dart
@@ -145,7 +145,7 @@ class Flutter {
145
146
if (!Directory(p.join(target.dir.absolute.path, 'test')).existsSync()) {
147
stdout?.call(
148
- 'No test folder found in ${target.dir.absolute.path}',
+ 'No test folder found in ${target.dir.absolute.path}\n',
149
);
150
return ExitCode.success.code;
151
}
test/src/cli/flutter_cli_test.dart
@@ -368,7 +368,7 @@ void main() {
368
() => logger.write(
369
any(
370
that: contains(
371
- 'No test folder found in ${directory.path}',
+ 'No test folder found in ${directory.path}\n',
372
),
373
374
0 commit comments