Skip to content

Commit 942fd91

Browse files
committed
shouldnt -> shouldn't
1 parent cb15e7c commit 942fd91

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

testing/code/test_excinfo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ def test_excinfo_no_python_sourcecode(tmpdir):
370370
excinfo = pytest.raises(ValueError, template.render, h=h)
371371
for item in excinfo.traceback:
372372
print(item) # XXX: for some reason jinja.Template.render is printed in full
373-
item.source # shouldnt fail
373+
item.source # shouldn't fail
374374
if item.path.basename == "test.txt":
375375
assert str(item.source) == "{{ h()}}:"
376376

testing/test_junitxml.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,7 @@ def getini(self, name):
705705
return "pytest"
706706

707707
junitprefix = None
708-
# XXX: shouldnt need tmpdir ?
708+
# XXX: shouldn't need tmpdir ?
709709
xmlpath = str(tmpdir.join("junix.xml"))
710710
register = gotten.append
711711

0 commit comments

Comments
 (0)