Commit 8f367a5 1 parent 000c2f5 commit 8f367a5 Copy full SHA for 8f367a5
File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -618,7 +618,7 @@ def test_py_shebang_valid_bom(self):
618
618
data = self .run_py ([script , "-postarg" ])
619
619
self .assertEqual ("PythonTestSuite" , data ["SearchInfo.company" ])
620
620
self .assertEqual ("3.100" , data ["SearchInfo.tag" ])
621
- self .assertEqual (f"X.Y.exe -prearg { quote ( script ) } -postarg" , data ["stdout" ].strip ())
621
+ self .assertEqual (f"X.Y.exe -prearg { script } -postarg" , data ["stdout" ].strip ())
622
622
623
623
def test_py_shebang_invalid_bom (self ):
624
624
with self .py_ini (TEST_PY_DEFAULTS ):
@@ -628,7 +628,7 @@ def test_py_shebang_invalid_bom(self):
628
628
self .assertIn ("Invalid BOM" , data ["stderr" ])
629
629
self .assertEqual ("PythonTestSuite" , data ["SearchInfo.company" ])
630
630
self .assertEqual ("3.100" , data ["SearchInfo.tag" ])
631
- self .assertEqual (f"X.Y.exe { quote ( script ) } -postarg" , data ["stdout" ].strip ())
631
+ self .assertEqual (f"X.Y.exe { script } -postarg" , data ["stdout" ].strip ())
632
632
633
633
def test_py_handle_64_in_ini (self ):
634
634
with self .py_ini ("\n " .join (["[defaults]" , "python=3.999-64" ])):
You can’t perform that action at this time.
0 commit comments