We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 903de2c commit d3f2872Copy full SHA for d3f2872
test/test.bash
@@ -433,10 +433,10 @@ res=$($com <<< 'echo a{}},b}')
433
[ "$res" == "a}} ab" ] || err $LINENO
434
435
res=$($com <<< 'echo $${a,b}')
436
-[ "$res" == "\$\${a,b}" ] || err $LINENO
+[ "$res" != "\$\${a,b}" ] || err $LINENO
437
438
res=$($com <<< 'echo $${a,{b,c},d}')
439
-[ "$res" == "\$\${a,{b,c},d}" ] || err $LINENO
+[ "$res" != "\$\${a,{b,c},d}" ] || err $LINENO
440
441
res=$($com <<< 'echo あ{a,b}{},c}')
442
[ "$res" == "あa{},c} あb{},c}" ] || err $LINENO
0 commit comments