From 61effded205a8f245d3634179b38da2cb416904a Mon Sep 17 00:00:00 2001 From: Ian Rose Date: Tue, 9 Aug 2022 15:57:22 -0700 Subject: [PATCH] Fix condition --- tests/runtime/test_build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/runtime/test_build.py b/tests/runtime/test_build.py index 7edd2756e9..b5b5317dc7 100644 --- a/tests/runtime/test_build.py +++ b/tests/runtime/test_build.py @@ -72,7 +72,7 @@ def test_install_dist(): # Test that versions of packages installed are consistent with those # specified in `meta.yaml` - if os.environ.get("COILED_RUNTIME_VERSION", "unknown") not in ( + if os.environ.get("COILED_RUNTIME_VERSION", "unknown") in ( "upstream", "latest", "unknown",