Skip to content

Commit

Permalink
Don't use --auto in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jelmer committed Feb 27, 2024
1 parent 6de0ad0 commit eecc57e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion breezy/tests/test_grep.py
Original file line number Diff line number Diff line change
Expand Up @@ -2330,7 +2330,7 @@ def test_ver_basic_file(self):
self.assertEqual(out, res)
self.assertEqual(len(out.splitlines()), 1)

out, err = self.run_bzr(["grep", "--color", "auto", "-r", "1", "foo"])
out, err = self.run_bzr(["grep", "--color", "never", "-r", "1", "foo"])
self.assertEqual(out, txt_res)
self.assertEqual(len(out.splitlines()), 1)

Expand Down

0 comments on commit eecc57e

Please sign in to comment.