shouldnt -> shouldn't
This commit is contained in:
parent
cb15e7c700
commit
942fd91995
|
@ -370,7 +370,7 @@ def test_excinfo_no_python_sourcecode(tmpdir):
|
||||||
excinfo = pytest.raises(ValueError, template.render, h=h)
|
excinfo = pytest.raises(ValueError, template.render, h=h)
|
||||||
for item in excinfo.traceback:
|
for item in excinfo.traceback:
|
||||||
print(item) # XXX: for some reason jinja.Template.render is printed in full
|
print(item) # XXX: for some reason jinja.Template.render is printed in full
|
||||||
item.source # shouldnt fail
|
item.source # shouldn't fail
|
||||||
if item.path.basename == "test.txt":
|
if item.path.basename == "test.txt":
|
||||||
assert str(item.source) == "{{ h()}}:"
|
assert str(item.source) == "{{ h()}}:"
|
||||||
|
|
||||||
|
|
|
@ -705,7 +705,7 @@ def test_dont_configure_on_slaves(tmpdir):
|
||||||
return "pytest"
|
return "pytest"
|
||||||
|
|
||||||
junitprefix = None
|
junitprefix = None
|
||||||
# XXX: shouldnt need tmpdir ?
|
# XXX: shouldn't need tmpdir ?
|
||||||
xmlpath = str(tmpdir.join("junix.xml"))
|
xmlpath = str(tmpdir.join("junix.xml"))
|
||||||
register = gotten.append
|
register = gotten.append
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue