Skip to content

Fix base_testing_aws_client import after recent upstream changes #66

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions aws-replicator/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from localstack.testing.aws.util import (
base_aws_client_factory,
base_aws_session,
primary_testing_aws_client,
base_testing_aws_client,
)

pytest_plugins = [
Expand All @@ -22,4 +22,4 @@ def aws_client_factory(aws_session):

@pytest.fixture(scope="session")
def aws_client(aws_client_factory):
return primary_testing_aws_client(aws_client_factory)
return base_testing_aws_client(aws_client_factory)
Loading