Skip to content

Commit e1eb82c

Browse files
committed
fix fixture
1 parent 3383000 commit e1eb82c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ def tf_full_version(tf_training_latest_version, tf_serving_latest_version):
325325
Fixture exists as such, since TF training and TFS have different latest versions.
326326
Otherwise, this would simply be a single latest version.
327327
"""
328-
return min(Version(tf_training_latest_version), Version(tf_serving_latest_version))
328+
return str(min(Version(tf_training_latest_version), Version(tf_serving_latest_version)))
329329

330330

331331
@pytest.fixture(scope="module")

0 commit comments

Comments
 (0)