From 0b5a77f459a867c9c86194d6a6f45c41a4c36f6d Mon Sep 17 00:00:00 2001 From: Chris Date: Sun, 17 Jun 2018 01:20:08 -0400 Subject: [PATCH] rename functions --- test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test.sh b/test.sh index 972579b..15effd4 100755 --- a/test.sh +++ b/test.sh @@ -134,12 +134,12 @@ test_read_sleep() { assert_equals "$((result+1))" "$SECONDS" } -test_braces_expansion() { +test_brace_expansion() { printf -v result %s {a,{q,x}}c assert_equals "$result" "acqcxc" } -test_numeric_sequence() { +test_brace_expansion_numeric_sequence() { printf -v result '%s ' {1..10} assert_equals "$result" "1 2 3 4 5 6 7 8 9 10 " }