Skip to content

Commit 6c58471

Browse files
committed
Fix tests in CI
Comparing the git output was an idiotic idea if we don't pin the git version. Since I'm not planning on doing that, lets remove comparing the output.
1 parent 0741f87 commit 6c58471

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

test/commands/single_commands_test.dart

+6-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,12 @@ void main() {
3333
for (var command in singleCommandsWithErrorTests) {
3434
test(
3535
command,
36-
() async => testGitCommand(s, command, shouldReturnError: true),
36+
() async => testGitCommand(
37+
s,
38+
command,
39+
shouldReturnError: true,
40+
ignoreOutput: true,
41+
),
3742
);
3843
}
3944

0 commit comments

Comments
 (0)