Skip to content

Commit

Permalink
Enlarge more
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhollas committed Oct 14, 2024
1 parent 1030d46 commit 3288c78
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions single_app.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
"url = urlparse.urlsplit(jupyter_notebook_url) # noqa: F821\n",
"try:\n",
" name = urlparse.parse_qs(url.query)[\"app\"][0]\n",
"except KeyError:\n",
" raise ValueError(\"No app specified\")"
"except KeyError as e:\n",
" raise ValueError(\"No app specified\") from e"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion tests_notebooks/test_start.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def test_click_appstore(selenium_driver, final_screenshot):
assert len(handles) == 1
selenium.switch_to.window(handles.pop())
time.sleep(5)
selenium.set_window_size(1200, 941)
selenium.set_window_size(1800, 900)
dropdown = selenium.find_element(
By.XPATH,
"//div[@id='notebook-container']/div[5]/div[2]/div[2]/div/div[3]/div/div[2]/div/select",
Expand Down

0 comments on commit 3288c78

Please sign in to comment.