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 f6632b0 commit 297e3f3Copy full SHA for 297e3f3
tests/test_comment_spell_check.py
@@ -98,16 +98,21 @@ def test_bibtex(self):
98
99
def test_url(self):
100
"""URL test"""
101
+ url = (
102
+ "https://raw.githubusercontent.com/SimpleITK/SimpleITK/"
103
+ "refs/heads/master/.github/workflows/additional_dictionary.txt"
104
+ )
105
runresult = subprocess.run(
106
[
107
"comment_spell_check",
108
"--dict",
- "https://raw.githubusercontent.com/SimpleITK/SimpleITK/refs/heads/master/.github/workflows/additional_dictionary.txt",
109
+ url,
110
"../tests/urltest.py",
111
],
112
cwd="comment_spell_check",
113
stdout=subprocess.PIPE,
114
)
115
+ self.assertEqual(runresult.returncode, 0, runresult.stdout)
116
117
118
if __name__ == "__main__":
0 commit comments