We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
clone
1 parent 242e449 commit 26c7f85Copy full SHA for 26c7f85
tests/test_clone.py
@@ -14,4 +14,4 @@ def test_clone(self):
14
font = Font(filepath=filepath)
15
font_clone = font.clone()
16
self.assertFalse(font == font_clone)
17
- self.assertTrue(font._filename == font_clone._filename)
+ self.assertEqual(f"{font}", f"{font_clone}")
0 commit comments