Skip to content

Commit 304ce9e

Browse files
committed
*sigh*
1 parent 77bc461 commit 304ce9e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_jqlcomposer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
def test_jqlcomposer_main_asfile():
88
for i in xrange(len(TEST_TERMS)):
99
idx = i+1
10-
with open(f"testout{idx}.txt", "w") as outfile
10+
with open(f"testout{idx}.txt", "w") as outfile:
1111
subprocess.run(["python", "jqlcomposer.py", TEST_TERMS[i], "--filename", f"test{idx}.json"], stdout=outfile)
1212
assert 0 == filecmp.cmp(f"testout{idx}.txt", f"expect{idx}.txt")
1313

@@ -17,7 +17,7 @@ def test_jqlcomposer_main_astext():
1717
json_contents = ""
1818
with open(f"test{idx}.json", "r") as infile:
1919
json_contents = infile.read()
20-
with open(f"testout{idx}.txt", "w") as outfile
20+
with open(f"testout{idx}.txt", "w") as outfile:
2121
subprocess.run(["python", "jqlcomposer.py", TEST_TERMS[i], f'"{json_contents}"'], stdout=outfile)
2222
assert 0 == filecmp.cmp(f"testout{idx}.txt", f"expect{idx}.txt")
2323

0 commit comments

Comments
 (0)