Skip to content

Commit

Permalink
Troubleshoot unit test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonDaniel committed Nov 6, 2024
1 parent 8144bd1 commit 274c92d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_diana_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def test_generate_hana_config(self, confirm, prompt):
self.assertEqual(hana_config['auth_requests_per_minute'], 6)

# Test none confirmed
confirm.return_value = False
confirm.side_effect = [False, True]
prompt.side_effect = [30, 3]
hana_config = generate_hana_config()
self.assertIsInstance(hana_config['hana'], dict)
Expand Down

0 comments on commit 274c92d

Please sign in to comment.