Skip to content

Commit 3e27352

Browse files
committed
fix
1 parent ffe5687 commit 3e27352

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/_cli/test_file_path.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def test_local_file_reader(tmp_path: Path) -> None:
131131

132132
def test_static_notebook_reader() -> None:
133133
reader = StaticNotebookReader()
134-
valid_url = "https://static.marimo.app/example"
134+
valid_url = "https://static.marimo.app/static/example"
135135
invalid_url = "https://example.com/file.py"
136136

137137
with patch.object(
@@ -274,9 +274,9 @@ def test_generic_url_reader_with_query_params():
274274
def test_static_notebook_reader_url_formats():
275275
reader = StaticNotebookReader()
276276
urls = [
277-
"https://static.marimo.app/example",
278-
"https://static.marimo.app/example/",
279-
"https://static.marimo.app/example.html",
277+
"https://static.marimo.app/static/example",
278+
"https://static.marimo.app/static/example/",
279+
"https://static.marimo.app/static/example.html",
280280
]
281281
for url in urls:
282282
with patch.object(

0 commit comments

Comments
 (0)