Skip to content

Commit 69538b0

Browse files
HDDS-11687. Robot warning: replace "is not" with "!=" (apache#7516)
1 parent b60d897 commit 69538b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hadoop-ozone/dist/src/main/smoketest/s3/bucketcreate.robot

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ Create new bucket and check no group ACL
4646
${bucket} = Create bucket
4747
${acl} = Execute ozone sh bucket getacl s3v/${bucket}
4848
${group} = Get Regexp Matches ${acl} "GROUP"
49-
IF '${group}' is not '[]'
49+
IF '${group}' != '[]'
5050
${json} = Evaluate json.loads('''${acl}''') json
5151
# make sure this check is for group acl
5252
Should contain ${json}[1][type] GROUP
5353
Should contain ${json}[1][aclList] NONE
54-
END
54+
END

0 commit comments

Comments
 (0)