We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac5ffb9 commit 18ef1dfCopy full SHA for 18ef1df
1 file changed
packages/cli_tools/test/execute_test.dart
@@ -46,7 +46,7 @@ void main() {
46
() async {
47
final result = await runDriver('fhasjkhfs');
48
expect(result.exitCode, isNot(0));
49
- expect(result.stderr, contains('not found'));
+ expect(result.stderr, contains(Platform.isWindows ? 'not recognized' : 'not found'));
50
},
51
);
52
0 commit comments