Skip to content

Commit

Permalink
test: fix system_prompt type test
Browse files Browse the repository at this point in the history
  • Loading branch information
lpm0073 committed Jan 28, 2024
1 parent ed5d5b3 commit 9632734
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def test_system_prompt(self):
)
self.assertIsInstance(system_prompt, SystemPrompt)
self.assertIsInstance(system_prompt.system_prompt, str)
self.assertTrue(isinstance(system_prompt.to_json(), dict))
self.assertTrue(isinstance(system_prompt.to_json(), str))

def test_system_prompt_invalid(self):
"""Test system_prompt."""
Expand Down

0 comments on commit 9632734

Please sign in to comment.