Skip to content

Commit

Permalink
Fixed: typo in the config tests (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
signebedi committed May 14, 2023
1 parent 1a7d12b commit 8f09e4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def test_default_config(self):
def test_custom_config(self):
custom_config_data = get_config_data(config_file='tests/test_gptty.ini')
self.assertEqual(custom_config_data['api_key'], "ANOTHER_KEY_HERE")
self.assertEqual(default_config_data['org_id'], "org-536JCU1SlmsQZB0i734dCsGC")
self.assertEqual(custom_config_data['org_id'], "org-536JCU1SlmsQZB0i734dCsGC")
self.assertEqual(custom_config_data['your_name'], 'custom_question')
self.assertEqual(custom_config_data['gpt_name'], 'custom_response')
self.assertEqual(custom_config_data['output_file'], 'custom_output.txt')
Expand Down

0 comments on commit 8f09e4a

Please sign in to comment.