Skip to content

Commit

Permalink
Fixes #4: Removed errors raised
Browse files Browse the repository at this point in the history
  • Loading branch information
Francois-Werbrouck committed Mar 14, 2024
1 parent f339b90 commit 4d340ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/testing_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
def raise_error(message):
raise Exception(message)

NACHET_SCHEMA = os.getenv("NACHET_SCHEMA") or raise_error("NACHET_SCHEMA is not set")
NACHET_DB_URL = os.getenv("NACHET_DB_URL") or raise_error("NACHET_DB_URL is not set")
NACHET_SCHEMA = os.getenv("NACHET_SCHEMA") #or raise_error("NACHET_SCHEMA is not set")
NACHET_DB_URL = os.getenv("NACHET_DB_URL") #or raise_error("NACHET_DB_URL is not set")

0 comments on commit 4d340ef

Please sign in to comment.