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 6f1ee8c commit 585dbbbCopy full SHA for 585dbbb
tests/test_comment_spell_check.py
@@ -62,7 +62,7 @@ def test_comment_spell_check(self):
62
"comment_spell_check.py",
63
"--version",
64
],
65
- stdout = subprocess.PIPE,
+ stdout=subprocess.PIPE,
66
)
67
print("Return code:", runresult.returncode)
68
print("Version: ", runresult.stdout)
@@ -72,6 +72,4 @@ def test_comment_spell_check(self):
72
"Self code test: comment_spell_check.py process returned bad code"
73
74
if "unknown" in version_string:
75
- self.fail(
76
- "Self code test: version string contains \'unknown\'"
77
- )
+ self.fail("Self code test: version string contains 'unknown'")
0 commit comments