Skip to content

Commit

Permalink
Thug commit of fix for oversight in test/test_common.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
dmichaels-harvard committed Jul 5, 2023
1 parent 1bceb29 commit a91957f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_common.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit a91957f

Please sign in to comment.