Skip to content

Commit e63d5ca

Browse files
committed
Remove forgotten debug output that was poluting the test outputs.
1 parent d6bc3ab commit e63d5ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

testing/test_pytest_html.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -692,7 +692,7 @@ def pytest_configure(config):
692692
result, html = run(testdir)
693693
assert result.ret == 0
694694
assert "Environment" in html
695-
assert len(re.findall(expected_html_re, html)) == 1, html
695+
assert len(re.findall(expected_html_re, html)) == 1
696696

697697
_unordered_dict = {k: len(k) for k in _unsorted_tuples[0]}
698698
_unordered_dict_expected = (
@@ -732,7 +732,7 @@ def pytest_configure(config):
732732
result, html = run(testdir)
733733
assert result.ret == 0
734734
assert "Environment" in html
735-
assert len(re.findall(expected_output, html)) == 1, html
735+
assert len(re.findall(expected_output, html)) == 1
736736

737737
def test_environment_ordered(self, testdir):
738738
testdir.makeconftest(

0 commit comments

Comments
 (0)