Imported from ../bash-3.0.16.tar.gz.
[platform/upstream/bash.git] / tests / array.tests
index db02c89..4f5d830 100644 (file)
@@ -322,7 +322,7 @@ echo ${av[@]:3:5}   # how about too many elements?
 
 echo positive offset - expect five seven
 echo ${av[@]:5:2}
-echo negative offset - expect five seven
+echo negative offset to unset element - expect seven
 echo ${av[@]: -2:2}
 
 echo positive offset 2 - expect seven