Skip to content

Commit a1a032a

Browse files
committed
Fixes
1 parent 8bbdd6d commit a1a032a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test_places_replication.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ def setUp(self):
1212
def test_generate_conversation(self):
1313
conversation = self.conversation_generator.generate_conversation(min_turns=10, start_conversation=True)
1414
self.assertEqual(len(conversation), 10)
15-
self.assertEqual(conversation[0][1], self.agent_list[0])
16-
self.assertEqual(conversation[0][2], self.conversation_generator.conversation_starters[0])
15+
self.assertIn(conversation[0][1], [agent.name for agent in self.agent_list])
16+
self.assertIn(conversation[0][2], [conversation_start for conversation_start in self.conversation_generator.conversation_starters])
1717

1818
def test_print_chat_history(self):
1919
# Assuming conversation history is not empty

0 commit comments

Comments
 (0)