We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13eb5aa commit 95253acCopy full SHA for 95253ac
src/bootstrap/bootstrap_test.py
@@ -109,8 +109,8 @@ def test_unknown_args(self, err):
109
err.assert_called_with("Option 'enable-full-tools' is not recognized")
110
err.reset_mock()
111
# It should be print an error message if the argument is not recognized
112
- configure.parse_args(["--enable-garbage-collector"])
113
- err.assert_called_with("Option '--enable-garbage-collector' is not recognized")
+ configure.parse_args(["--some-random-flag"])
+ err.assert_called_with("Option '--some-random-flag' is not recognized")
114
115
@patch("configure.err")
116
def test_need_value_args(self, err):
0 commit comments