Skip to content

Commit

Permalink
Fix flynt issue
Browse files Browse the repository at this point in the history
  • Loading branch information
abikouo committed Nov 28, 2024
1 parent d7aab15 commit 2f85178
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/plugins/modules/test_rds_cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def test_module_state(self, ansible_module):
with pytest.raises(SystemExit):
rds_cluster.changing_cluster_options(copy.deepcopy(modify_params), current_cluster)
rds_cluster.module.fail_json.assert_called_once_with(
"Only aurora clusters can use the state {}".format(state)
f"Only aurora clusters can use the state {state}"
)
rds_cluster.module.fail_json.reset_mock()
# 'aurora' engine
Expand Down

0 comments on commit 2f85178

Please sign in to comment.