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 " }