summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtests/t1700-probe-fs.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/t1700-probe-fs.sh b/tests/t1700-probe-fs.sh
index c2c9706..574d6fe 100755
--- a/tests/t1700-probe-fs.sh
+++ b/tests/t1700-probe-fs.sh
@@ -40,7 +40,7 @@ for type in ext2 ext3 ext4 btrfs xfs nilfs2 ntfs vfat hfsplus; do
esac
# create an $type file system
- if [ "$type" == "xfs" ]; then
+ if [ "$type" = "xfs" ]; then
# Work around a problem with s390
mkfs.xfs -ssize=$ss -dfile,name=$dev,size=${n_sectors}s || fail=1
else