travis test typo fix

This commit is contained in:
torzdf
2020-12-29 18:13:56 +00:00
parent 199f6caccb
commit b67f91ea0b

View File

@@ -25,5 +25,5 @@ def test_backend(dummy): # pylint:disable=unused-argument
def test_keras(dummy): # pylint:disable=unused-argument
""" Sanity check to ensure that tensorflow keras is being used for CPU and standard
keras for AMD. """
assert ((_BACKEND == "cpu" and keras.__version__ in ("2.3.0-tf", "2.4.0") or
assert ((_BACKEND == "cpu" and keras.__version__ in ("2.3.0-tf", "2.4.0")) or
(_BACKEND == "amd" and keras.__version__ == "2.2.4"))