diff options
author | Jörg Thalheim <joerg@thalheim.io> | 2017-07-30T11·27+0100 |
---|---|---|
committer | Jörg Thalheim <joerg@thalheim.io> | 2017-07-30T11·32+0100 |
commit | 2fd8f8bb99a2832b3684878c020ba47322e79332 (patch) | |
tree | 65a667fbc746f4ff8efcaca3c0a58565985f26a5 /tests | |
parent | c7654bc491d9ce7c1fbadecd7769418fa79a2060 (diff) |
Replace Unicode quotes in user-facing strings by ASCII
Relevant RFC: NixOS/rfcs#4 $ ag -l | xargs sed -i -e "/\"/s/’/'/g;/\"/s/‘/'/g"
Diffstat (limited to 'tests')
-rw-r--r-- | tests/timeout.nix | 2 | ||||
-rw-r--r-- | tests/timeout.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/timeout.nix b/tests/timeout.nix index e18d717eff1f..d0e949e31498 100644 --- a/tests/timeout.nix +++ b/tests/timeout.nix @@ -6,7 +6,7 @@ with import ./config.nix; name = "timeout"; buildCommand = '' touch $out - echo "‘timeout’ builder entering an infinite loop" + echo "'timeout' builder entering an infinite loop" while true ; do echo -n .; done ''; }; diff --git a/tests/timeout.sh b/tests/timeout.sh index 77b227e89ba5..2b864b86dca4 100644 --- a/tests/timeout.sh +++ b/tests/timeout.sh @@ -5,7 +5,7 @@ source common.sh failed=0 messages="`nix-build -Q timeout.nix -A infiniteLoop --timeout 2 2>&1 || failed=1`" if [ $failed -ne 0 ]; then - echo "error: ‘nix-store’ succeeded; should have timed out" + echo "error: 'nix-store' succeeded; should have timed out" exit 1 fi |