Skip to content

Commit 4b9b556

Browse files
author
Cody D'Ambrosio
committed
Merge branch 'supprt-raw-yaml-block' of https://github.com/codambro/tappy into supprt-raw-yaml-block
2 parents f76011c + fc0c045 commit 4b9b556

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/test_line.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ def test_yaml_block(self):
5757
result = Result(False, 46, "passing", raw_yaml_block=raw_yaml_block)
5858
if have_yaml:
5959
self.assertEqual(result.yaml_block["message"], "test_message")
60-
self.assertIn(" ---\n message: test_message\n severity: fail\n ...", str(result))
60+
self.assertIn(
61+
str(result), " ---\n message: test_message\n severity: fail\n ..."
62+
)
6163
else:
6264
self.assertIsNone(result.yaml_block)

0 commit comments

Comments
 (0)