Skip to content

Commit 46bfaa7

Browse files
committed
chore: fix analyzer
1 parent e9243f6 commit 46bfaa7

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

test/src/cli/test_runner_cli_test.dart

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,8 @@ void main() {
433433
'The test description was: renders CounterPage',
434434
'\x1B[2K\rApp renders CounterPage ${tempDirectory.path}/test/app/view/app_test.dart (FAILED)',
435435
'\x1B[2K\rFailing Tests:\n'
436-
'\x1B[2K\r - ${p.join('test', 'app', 'view', 'app_test.dart')} \n'
436+
'\x1B[2K\r - '
437+
'${p.join('test', 'app', 'view', 'app_test.dart')} \n'
437438
'\x1B[2K\r \t- [ERROR] App renders CounterPage\n',
438439
]),
439440
);
@@ -539,7 +540,8 @@ void main() {
539540
'\x1B[2K\rerror',
540541
'\x1B[2K\r${p.join('test', 'example_test.dart')} 4 main\n',
541542
'\x1B[2K\rFailing Tests:\n'
542-
'\x1B[2K\r - ${p.join('test', 'app', 'view', 'app_test.dart')} \n'
543+
'\x1B[2K\r - '
544+
'${p.join('test', 'app', 'view', 'app_test.dart')} \n'
543545
'''\x1B[2K\r \t- [FAILED] CounterCubit emits [1] when increment is called\n''',
544546
]),
545547
);
@@ -1219,7 +1221,8 @@ void main() {
12191221
'\x1B[2K\rerror',
12201222
'\x1B[2K\r${p.join('test', 'example_test.dart')} 4 main\n',
12211223
'\x1B[2K\rFailing Tests:\n'
1222-
'\x1B[2K\r - ${p.join('test', 'app', 'view', 'app_test.dart')} \n'
1224+
'\x1B[2K\r - '
1225+
'${p.join('test', 'app', 'view', 'app_test.dart')} \n'
12231226
'''\x1B[2K\r \t- [FAILED] CounterCubit emits [1] when increment is called\n''',
12241227
]),
12251228
);

0 commit comments

Comments
 (0)