diff --git a/tests/test_messages.py b/tests/test_messages.py
index 6e44d88..41648a8 100644
--- a/tests/test_messages.py
+++ b/tests/test_messages.py
@@ -28,17 +28,10 @@ def test_create_system_message():
}
-def test_assistance_message():
- assert m.AssistantMessage(content="I am nice").dict() == {
- "role": "assistant",
- "content": "I am nice",
- }
-
-
def test_create_tagged_message():
assert m.TaggedMessage(content="I am nice", tag="data").dict() == {
"role": "user",
- "content": "I am nice",
+ "content": "Consider the following data:\n\nI am nice",
}