Skip to content

Commit

Permalink
change notebook path relative to playwright
Browse files Browse the repository at this point in the history
  • Loading branch information
aktech committed Jul 18, 2023
1 parent efaff5b commit 76ff6db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests_e2e/playwright/run_notebook.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def _restart_run_all(self):
nav.reset_workspace()
test_app = RunNotebook(navigator=nav)
notebook_filepath_in_repo = (
"tests_e2e/playwright/test_data/test_notebook_output.ipynb"
"test_data/test_notebook_output.ipynb"
)
notebook_filepath_on_nebari = "test_notebook_output.ipynb"
with open(notebook_filepath_in_repo, "r") as notebook:
Expand Down
2 changes: 1 addition & 1 deletion tests_e2e/playwright/test_playwright.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
def test_notebook(navigator):
test_app = RunNotebook(navigator=navigator)
notebook_filepath_in_repo = (
"tests_e2e/playwright/test_data/test_notebook_output.ipynb"
"test_data/test_notebook_output.ipynb"
)
notebook_filepath_on_nebari = "test_notebook_output.ipynb"
with open(notebook_filepath_in_repo, "r") as notebook:
Expand Down

0 comments on commit 76ff6db

Please sign in to comment.