tests: change quoting to match new Nixpkgs behavior
Fixes tests that are affected by <https://github.com/NixOS/nixpkgs/pull/333744>.
This commit is contained in:
parent
ec4c6928bb
commit
8a175a8913
39 changed files with 58 additions and 58 deletions
|
|
@ -20,7 +20,7 @@ with lib;
|
|||
assertFileExists home-files/.bashrc
|
||||
assertFileContains \
|
||||
home-files/.bashrc \
|
||||
"alias ls='@pls@/bin/pls'"
|
||||
"alias ls=@pls@/bin/pls"
|
||||
assertFileContains \
|
||||
home-files/.bashrc \
|
||||
"alias ll='@pls@/bin/pls -d perms -d user -d group -d size -d mtime -d git'"
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ with lib;
|
|||
assertFileExists home-files/.config/fish/config.fish
|
||||
assertFileContains \
|
||||
home-files/.config/fish/config.fish \
|
||||
"alias ls '@pls@/bin/pls'"
|
||||
"alias ls @pls@/bin/pls"
|
||||
assertFileContains \
|
||||
home-files/.config/fish/config.fish \
|
||||
"alias ll '@pls@/bin/pls -d perms -d user -d group -d size -d mtime -d git'"
|
||||
|
|
|
|||
|
|
@ -23,10 +23,10 @@ with lib;
|
|||
assertFileExists home-files/.zshrc
|
||||
assertFileContains \
|
||||
home-files/.zshrc \
|
||||
"alias -- 'ls'='@pls@/bin/pls'"
|
||||
"alias -- ls=@pls@/bin/pls"
|
||||
assertFileContains \
|
||||
home-files/.zshrc \
|
||||
"alias -- 'll'='@pls@/bin/pls -d perms -d user -d group -d size -d mtime -d git'"
|
||||
"alias -- ll='@pls@/bin/pls -d perms -d user -d group -d size -d mtime -d git'"
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue