Skip to content

Commit

Permalink
Update tests to match new _idempotent_create signature
Browse files Browse the repository at this point in the history
  • Loading branch information
kislyuk committed Jan 18, 2021
1 parent e46a237 commit 3658927
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def test_existing_log_stream_does_not_create_log_stream(self):
)
logging.config.dictConfig(config_dict)
logger = logging.getLogger("root")
_idempotent_create(logs.create_log_stream, logGroupName=log_group, logStreamName=log_stream)
_idempotent_create(logs, "create_log_stream", logGroupName=log_group, logStreamName=log_stream)
self.addCleanup(
logs.delete_log_stream,
logGroupName=log_group,
Expand Down

0 comments on commit 3658927

Please sign in to comment.