Skip to content

Commit 622690b

Browse files
committed
Fix skipIf condition
1 parent a5d94a8 commit 622690b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/suite/test_stdconsole.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ def test_isatty(self):
404404
finally:
405405
self.batfile = hideDefaultBatch
406406

407-
@unittest.skipIf(not is_cli or is_netcoreapp) # https://github.com/IronLanguages/ironpython3/issues/2055
407+
@unittest.skipIf(not is_cli or is_netcoreapp, "https://github.com/IronLanguages/ironpython3/issues/2055")
408408
def test_cp35263(self):
409409
script = """
410410
import warnings

0 commit comments

Comments
 (0)