fix entity uri unit test
Signed-off-by: martin f. krafft <madduck@madduck.net>
diff --git a/reclass/datatypes/tests/test_entity.py b/reclass/datatypes/tests/test_entity.py
index 576caa2..0fd5687 100644
--- a/reclass/datatypes/tests/test_entity.py
+++ b/reclass/datatypes/tests/test_entity.py
@@ -67,11 +67,11 @@
self.assertEqual(Entity(*instances, name=name),
Entity(*instances, name=name))
- def test_unequal_empty_named(self, **types):
+ def test_unequal_empty_uri(self, **types):
instances = self._make_instances(**types)
uri = 'test://uri'
self.assertNotEqual(Entity(*instances, uri=uri),
- Entity(*instances, name=uri[::-1]))
+ Entity(*instances, uri=uri[::-1]))
for i in instances:
i.__eq__.assert_called_once_with(i)