Forgot some typo

This commit is contained in:
Narvath 2022-03-13 03:21:26 +01:00
parent 89f6909aff
commit f6e20f980c

View file

@ -109,9 +109,9 @@ class TestComponents(EvenniaTest):
assert self.char1.cmp.does_not_exist is None
def test_host_has_class_component_tags(self):
assert self.char1.tags.has(key="test_a", category="component")
assert self.char1.tags.has(key="test_b", category="component")
assert not self.char1.tags.has(key="test_c", category="component")
assert self.char1.tags.has(key="test_a", category="components")
assert self.char1.tags.has(key="test_b", category="components")
assert not self.char1.tags.has(key="test_c", category="components")
def test_host_has_added_component_tags(self):
rct = RuntimeComponentTestC.create(self.char1)