Skip to content
Snippets Groups Projects
Verified Commit ce71d5a8 authored by Daniel Hornung's avatar Daniel Hornung
Browse files

FIX for c1b988dd

parent b639111a
Branches
Tags
No related merge requests found
Pipeline #41556 passed
......@@ -31,7 +31,7 @@ def test_messages_dict_behavior():
from caosdb.common.models import Message, Messages
msgs = _Messages()
msgs = Messages()
# create Message
msg = Message(
......@@ -40,10 +40,10 @@ def test_messages_dict_behavior():
description="Greeting the world",
body="Hello, world!")
# append it to the _Messages
# append it to the Messages
msgs.append(msg)
# use _Messages as list of Message objects
# use Messages as list of Message objects
for m in msgs:
assert isinstance(m, Message)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment