aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2017-07-31 10:21:40 +0200
committerEelco Dolstra <edolstra@gmail.com>2017-07-31 10:21:40 +0200
commit561e977f51c1d9ec55e4a70791958d4e214df465 (patch)
tree65a667fbc746f4ff8efcaca3c0a58565985f26a5 /tests
parentc7654bc491d9ce7c1fbadecd7769418fa79a2060 (diff)
parent2fd8f8bb99a2832b3684878c020ba47322e79332 (diff)
Merge branch 'quotes' of https://github.com/Mic92/nix-1
Diffstat (limited to 'tests')
-rw-r--r--tests/timeout.nix2
-rw-r--r--tests/timeout.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/timeout.nix b/tests/timeout.nix
index e18d717ef..d0e949e31 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 77b227e89..2b864b86d 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