Skip to content

Commit

Permalink
TST: Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cortadocodes committed Apr 11, 2024
1 parent 203ed7b commit 002dac5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
class TestCloudRunDeployment(TestCase):
# This is the service ID of the example service deployed to Google Cloud Run.
child = Child(
id="octue/example-service-cloud-run:stream-event",
id="octue/example-service-cloud-run:0.4.0",
backend={"name": "GCPPubSubBackend", "project_name": os.environ["TEST_PROJECT_NAME"]},
)

Expand Down
2 changes: 1 addition & 1 deletion tests/test_compatibility.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def test_warn_if_incompatible_with_compatible_versions(self):

try:
with self.assertLogs(level=logging.WARNING):
warn_if_incompatible(parent_sdk_version="0.35.0", child_sdk_version="0.35.0")
warn_if_incompatible(parent_sdk_version="0.40.0", child_sdk_version="0.40.0")
except AssertionError:
no_warnings = True

Expand Down

0 comments on commit 002dac5

Please sign in to comment.