diff --git a/test/test_common.py b/test/test_common.py index 55054a4e6..35e096256 100644 --- a/test/test_common.py +++ b/test/test_common.py @@ -1,9 +1,9 @@ -from dcicutils.common import EnvName, OrchestratedApp, APP_CGAP, APP_FOURFRONT, ORCHESTRATED_APPS +from dcicutils.common import EnvName, OrchestratedApp, APP_CGAP, APP_FOURFRONT, APP_SMAHT, ORCHESTRATED_APPS def test_app_constants(): - assert set(ORCHESTRATED_APPS) == {APP_CGAP, APP_FOURFRONT} == {'cgap', 'fourfront'} + assert set(ORCHESTRATED_APPS) == {APP_CGAP, APP_FOURFRONT, APP_SMAHT} == {'cgap', 'fourfront', 'smaht'} # For thexe next two, which are really type hints, just test that they exist. assert EnvName