diff --git a/tests/modules/programs/firefox/profiles/userchrome/default.nix b/tests/modules/programs/firefox/profiles/userchrome/default.nix index a174f3ce..f1b1482b 100644 --- a/tests/modules/programs/firefox/profiles/userchrome/default.nix +++ b/tests/modules/programs/firefox/profiles/userchrome/default.nix @@ -50,15 +50,15 @@ in assertFileContent \ home-files/${cfg.configPath}/lines/chrome/userChrome.css \ - ${./expected-userchrome.css} + ${./chrome/userChrome.css} assertFileContent \ home-files/${cfg.configPath}/path/chrome/userChrome.css \ - ${./expected-userchrome.css} + ${./chrome/userChrome.css} assertFileContent \ home-files/${cfg.configPath}/folder/chrome/userChrome.css \ - ${./expected-userchrome.css} + ${./chrome/userChrome.css} ''; } ); diff --git a/tests/modules/programs/firefox/profiles/userchrome/expected-userchrome.css b/tests/modules/programs/firefox/profiles/userchrome/expected-userchrome.css deleted file mode 100644 index bc84d62b..00000000 --- a/tests/modules/programs/firefox/profiles/userchrome/expected-userchrome.css +++ /dev/null @@ -1,9 +0,0 @@ -/* - This is a simple comment that should be written inside the `chrome/userChrome.css` -*/ - -#urlbar { - min-width: none !important; - border: none !important; - outline: none !important; -}