Skip to content

Commit

Permalink
grep: Don't use --auto in tests
Browse files Browse the repository at this point in the history
by jelmer review by jelmer
  • Loading branch information
jelmer authored and The Breezy Bot committed Feb 27, 2024
2 parents 6de0ad0 + eecc57e commit c0f1769
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 c0f1769

Please sign in to comment.