Skip to content

Commit b304953

Browse files
committed
Remove hyphen
1 parent d3312c6 commit b304953

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ def cleanup(api, version, operation_id, response, request, client=client):
570570
undo_name = undo_tag.replace(" ", "")
571571
undo_module_name = snake_case(undo_tag)
572572
undo_package = importlib.import_module(f"{package_name}.api.{undo_module_name}_api")
573-
api = getattr(undo_package, _api_name(undo_tag))(client)
573+
api = getattr(undo_package, _api_name(undo_name))(client)
574574

575575
operation_name = snake_case(operation["operationId"])
576576
method = getattr(api, operation_name)

0 commit comments

Comments
 (0)