Skip to content

Commit 0ffc8ec

Browse files
Update test_notebooks.py
correct parameter names
1 parent 0113e6b commit 0ffc8ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

testing/test_notebooks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ def load_configuration(config_file="env.json"):
1818
def test_notebook_execution(notebook_path):
1919
config = load_configuration()
2020
parameters = {
21-
"API_KEY": config.get("NOTEBOOK_PROJECT_ID", ""),
22-
"DB_URL": config.get("NOTEBOOK_GCP_LOCATION", ""),
21+
"NOTEBOOK_GCP_PROJECT_ID": config.get("NOTEBOOK_GCP_PROJECT_ID", ""),
22+
"NOTEBOOK_GCP_LOCATION": config.get("NOTEBOOK_GCP_LOCATION", ""),
2323
}
2424

2525
with open(notebook_path) as f:

0 commit comments

Comments
 (0)