about summary refs log tree commit diff
path: root/tests/timeout.sh
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2017-07-30T11·27+0100
committerJörg Thalheim <joerg@thalheim.io>2017-07-30T11·32+0100
commit2fd8f8bb99a2832b3684878c020ba47322e79332 (patch)
tree65a667fbc746f4ff8efcaca3c0a58565985f26a5 /tests/timeout.sh
parentc7654bc491d9ce7c1fbadecd7769418fa79a2060 (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/timeout.sh')
-rw-r--r--tests/timeout.sh2
1 files changed, 1 insertions, 1 deletions
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