summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <meyering@fb.com>2014-05-28 08:56:31 -0700
committerJim Meyering <meyering@fb.com>2014-05-28 08:56:31 -0700
commit1da239e2ebd260efa1b9dce9e19127b6bd4bb906 (patch)
tree932ae892a8b782f44088b90be62cb020a894481e
parent9e661325e5725c13dbaab898b183f286b193baf7 (diff)
downloadparted-1da239e2ebd260efa1b9dce9e19127b6bd4bb906.tar.gz
tests: use test's "=" operator, not "=="
* tests/t1700-probe-fs.sh: Avoid "make syntax-check" error: s/==/=/
-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