Skip to content

Commit 77af2d7

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 1668630 commit 77af2d7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/debug_statement_hook_test.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,16 @@ def test_finds_breakpoint():
3333

3434

3535
def test_allow(tmpdir):
36-
f_py = tmpdir.join("f.py")
37-
f_py.write("import q")
38-
ret = main([str(f_py), "--allow", "q"])
36+
f_py = tmpdir.join('f.py')
37+
f_py.write('import q')
38+
ret = main([str(f_py), '--allow', 'q'])
3939
assert ret == 0
4040

4141

4242
def test_forbid(tmpdir):
43-
f_py = tmpdir.join("f.py")
44-
f_py.write("import foo")
45-
ret = main([str(f_py), "--forbid", "foo"])
43+
f_py = tmpdir.join('f.py')
44+
f_py.write('import foo')
45+
ret = main([str(f_py), '--forbid', 'foo'])
4646
assert ret == 1
4747

4848

0 commit comments

Comments
 (0)