Skip to content

Commit 8bbc770

Browse files
committed
Fix configuration test.
1 parent cd7b2da commit 8bbc770

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/conftest.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@
3333
else:
3434
assert protobuf_version.startswith("4.") or protobuf_version.startswith(
3535
"5."
36-
), f"Expected protobuf 4.x/5.x, got {protobuf_version}"
36+
) or protobuf_version.startswith(
37+
"6."
38+
), f"Expected protobuf 4.x/5.x/6.x, got {protobuf_version}"
3739

3840
from temporalio.client import Client
3941
from temporalio.testing import WorkflowEnvironment

0 commit comments

Comments
 (0)