From 1a46c8bace151c732d7648f43f0c7d40ed3f1c54 Mon Sep 17 00:00:00 2001 From: Timm Fitschen <t.fitschen@indiscale.com> Date: Thu, 30 Sep 2021 23:57:58 +0200 Subject: [PATCH] BUG: fix duplicate test case name --- unittests/test_entity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unittests/test_entity.py b/unittests/test_entity.py index 0a0b5efa..1e88702a 100644 --- a/unittests/test_entity.py +++ b/unittests/test_entity.py @@ -72,7 +72,7 @@ class TestEntity(unittest.TestCase): self.assertEqual(entity.role, "RecordType") self.assertEqual(entity.to_xml().tag, "RecordType") - def test_recordtype_role(self): + def test_property_role(self): entity = Property() self.assertEqual(entity.role, "Property") -- GitLab