Skip to content

Commit

Permalink
Troubleshooting test failures
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonDaniel committed Jun 21, 2023
1 parent 7b40952 commit 187a05a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_skill.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def test_handle_ask_chatgpt(self):
{"username": "test_user"})
self.skill.handle_ask_chatgpt(fake_msg)
mock.assert_called_once()
args = mock.call_args
args = mock.call_args[0]
self.assertEqual(args[0], 'testing')
self.assertEqual(args[1], 'test_user')
self.assertEqual(args[2].value, LLM.GPT.value)
Expand Down

0 comments on commit 187a05a

Please sign in to comment.