Skip to content

Commit a772245

Browse files
Fix default value from run tests
1 parent 40016d9 commit a772245

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests_and_examples/run_query_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ def main():
282282
'0X2lkIjoxMH0.xRBHeDxTzYAgFyuU94SWFbjITeoxgyRCQGdIee8qrLA'))
283283

284284
# MODE_TEST give us if you want to use endpoint Test or Prod
285-
MODE_TEST = os.environ.get("MODE_TEST")
285+
MODE_TEST = os.environ.get("MODE_TEST", "test")
286286
endpoint_test = False if MODE_TEST.lower() == 'prod' else True
287287
sd_tester = SlicingDiceTester(
288288
api_key=API_KEY,

0 commit comments

Comments
 (0)