Skip to content

Commit 0f59c95

Browse files
authored
fix base_testing_aws_client import after recent upstream changes (#66)
1 parent 0661e52 commit 0f59c95

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

aws-replicator/tests/conftest.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from localstack.testing.aws.util import (
33
base_aws_client_factory,
44
base_aws_session,
5-
primary_testing_aws_client,
5+
base_testing_aws_client,
66
)
77

88
pytest_plugins = [
@@ -22,4 +22,4 @@ def aws_client_factory(aws_session):
2222

2323
@pytest.fixture(scope="session")
2424
def aws_client(aws_client_factory):
25-
return primary_testing_aws_client(aws_client_factory)
25+
return base_testing_aws_client(aws_client_factory)

0 commit comments

Comments
 (0)