Skip to content

Commit

Permalink
fix fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
laurenyu committed Jun 24, 2020
1 parent 3383000 commit e1eb82c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ def tf_full_version(tf_training_latest_version, tf_serving_latest_version):
Fixture exists as such, since TF training and TFS have different latest versions.
Otherwise, this would simply be a single latest version.
"""
return min(Version(tf_training_latest_version), Version(tf_serving_latest_version))
return str(min(Version(tf_training_latest_version), Version(tf_serving_latest_version)))


@pytest.fixture(scope="module")
Expand Down

0 comments on commit e1eb82c

Please sign in to comment.