Skip to content

Commit

Permalink
Fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
picklelo committed Dec 20, 2023
1 parent 65c9d7b commit b44b254
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -1199,7 +1199,7 @@ def compilable_app(tmp_path) -> Generator[tuple[App, Path], None, None]:
web_dir = app_path / ".web"
web_dir.mkdir(parents=True)
(web_dir / "package.json").touch()
app = App()
app = App(theme=None)
app.get_frontend_packages = unittest.mock.Mock()
with chdir(app_path):
yield app, web_dir
Expand Down

0 comments on commit b44b254

Please sign in to comment.