Skip to content

Commit d3f2872

Browse files
committed
Fix
1 parent 903de2c commit d3f2872

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test.bash

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -433,10 +433,10 @@ res=$($com <<< 'echo a{}},b}')
433433
[ "$res" == "a}} ab" ] || err $LINENO
434434

435435
res=$($com <<< 'echo $${a,b}')
436-
[ "$res" == "\$\${a,b}" ] || err $LINENO
436+
[ "$res" != "\$\${a,b}" ] || err $LINENO
437437

438438
res=$($com <<< 'echo $${a,{b,c},d}')
439-
[ "$res" == "\$\${a,{b,c},d}" ] || err $LINENO
439+
[ "$res" != "\$\${a,{b,c},d}" ] || err $LINENO
440440

441441
res=$($com <<< 'echo あ{a,b}{},c}')
442442
[ "$res" == "あa{},c} あb{},c}" ] || err $LINENO

0 commit comments

Comments
 (0)