From 1032d283d0eb39466fdcf7de8e387a775316fbb2 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Thu, 14 Jun 2018 20:30:27 +1000 Subject: [PATCH] misc: cleanup --- test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.sh b/test.sh index 0b4381e..32a301f 100755 --- a/test.sh +++ b/test.sh @@ -48,6 +48,7 @@ test_remove_array_dups() { } test_cycle() { + # shellcheck disable=2034 arr=(a b c d) result="$(cycle; cycle; cycle)" assert_equals "$result" "a b c " @@ -99,7 +100,6 @@ test_date() { assert_equals() { local status - ((tests+=1)) [[ "$1" == "$2" ]] && status="✔"