From 325acda70482e9bfda9a831d74915223b964a272 Mon Sep 17 00:00:00 2001 From: Simon Cozens Date: Wed, 1 Nov 2023 20:51:50 +0000 Subject: [PATCH] Update tests --- tests/test_compatibility.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_compatibility.py b/tests/test_compatibility.py index b2fff2f9..54459644 100644 --- a/tests/test_compatibility.py +++ b/tests/test_compatibility.py @@ -14,12 +14,12 @@ def test_compatibility_checker(data_dir, caplog): CompatibilityChecker([s.font for s in designspace.sources]).check() assert "differing number of contours in glyph A" in caplog.text - assert "Incompatible Sans Regular had 2" in caplog.text + assert "Incompatible Sans Regular had: 2" in caplog.text assert "differing number of points in glyph B, contour 0" in caplog.text assert "differing anchors in glyph A" in caplog.text - assert 'Incompatible Sans Bold had "foo"' in caplog.text + assert 'Incompatible Sans Bold had: "foo"' in caplog.text assert "Fonts had differing number of components in glyph C" in caplog.text