File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -134,12 +134,12 @@ def test_option_checking(self, err):
134134
135135 @patch ("configure.parse_example_config" , lambda known_args , _ : known_args )
136136 def test_known_args (self ):
137- # It should call `parse_example_config` with known arguments
137+ # It should contain known and correct arguments
138138 known_args = configure .parse_args (["--enable-full-tools" ])
139139 self .assertTrue (known_args ["full-tools" ][0 ][1 ])
140140 known_args = configure .parse_args (["--disable-full-tools" ])
141141 self .assertFalse (known_args ["full-tools" ][0 ][1 ])
142- # It should call `parse_example_config` with known arguments and their values
142+ # It should contain known arguments and their values
143143 known_args = configure .parse_args (["--target=x86_64-unknown-linux-gnu" ])
144144 self .assertEqual (known_args ["target" ][0 ][1 ], "x86_64-unknown-linux-gnu" )
145145 known_args = configure .parse_args (["--target" , "x86_64-unknown-linux-gnu" ])
You can’t perform that action at this time.
0 commit comments