File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1544,7 +1544,7 @@ def test_code_option_fast(self) -> None:
15441544
15451545 @pytest .mark .incompatible_with_mypyc
15461546 def test_code_option_config (self ) -> None :
1547- """Test that the code option finds the pyproject.toml in the current directory."""
1547+ """Test that the code option finds pyproject.toml in the current directory."""
15481548 with patch .object (black , "parse_pyproject_toml" , return_value = {}) as parse :
15491549 args = ["--code" , "print" ]
15501550 # This is the only directory known to contain a pyproject.toml
@@ -1563,7 +1563,7 @@ def test_code_option_config(self) -> None:
15631563
15641564 @pytest .mark .incompatible_with_mypyc
15651565 def test_code_option_parent_config (self ) -> None :
1566- """Test that the code option finds the pyproject.toml in the parent directory."""
1566+ """Test that the code option finds pyproject.toml in the parent directory."""
15671567 with patch .object (black , "parse_pyproject_toml" , return_value = {}) as parse :
15681568 with change_directory (THIS_DIR ):
15691569 args = ["--code" , "print" ]
You can’t perform that action at this time.
0 commit comments