Skip to content

Commit

Permalink
fix base_testing_aws_client import after recent upstream changes (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
whummer authored Jun 14, 2024
1 parent 0661e52 commit 0f59c95
Showing 1 changed file with 2 additions and 2 deletions.
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)

0 comments on commit 0f59c95

Please sign in to comment.