Skip to content

Commit 002dac5

Browse files
committedApr 11, 2024·
TST: Fix tests
1 parent 203ed7b commit 002dac5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎tests/cloud/deployment/google/cloud_run/test_cloud_run_deployment.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
class TestCloudRunDeployment(TestCase):
1414
# This is the service ID of the example service deployed to Google Cloud Run.
1515
child = Child(
16-
id="octue/example-service-cloud-run:stream-event",
16+
id="octue/example-service-cloud-run:0.4.0",
1717
backend={"name": "GCPPubSubBackend", "project_name": os.environ["TEST_PROJECT_NAME"]},
1818
)
1919

‎tests/test_compatibility.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def test_warn_if_incompatible_with_compatible_versions(self):
100100

101101
try:
102102
with self.assertLogs(level=logging.WARNING):
103-
warn_if_incompatible(parent_sdk_version="0.35.0", child_sdk_version="0.35.0")
103+
warn_if_incompatible(parent_sdk_version="0.40.0", child_sdk_version="0.40.0")
104104
except AssertionError:
105105
no_warnings = True
106106

0 commit comments

Comments
 (0)
Please sign in to comment.