diff --git a/tests/test_cli.py b/tests/test_cli.py index ec1e5fb..72ac57d 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -141,9 +141,9 @@ def test_install_writes_firefox_allowed_extensions(tmp_path): ] assert "about:debugging#/runtime/this-firefox" in result.output assert "npm run package:extension:firefox" in result.output - assert "dist/extension-package-firefo" in result.output - assert "x/manifest.json" in result.output - assert "Do not select extension/manifest.json" in result.output + output_unwrapped = result.output.replace("\n", "") + assert "dist/extension-package-firefox/manifest.json" in output_unwrapped + assert "Do not select extension/manifest.json" in output_unwrapped assert "Firefox extension ID" in result.output def test_install_windows_registers_native_host(tmp_path):