Skip to content
Snippets Groups Projects
Commit a196ee01 authored by Bo-Chun Chen's avatar Bo-Chun Chen
Browse files

Fix value comparison in test

parent 0637859b
No related branches found
No related tags found
1 merge request!56Feat check nfs mount
Pipeline #8039 passed with stages
in 20 minutes and 45 seconds
......@@ -196,7 +196,7 @@ test:
ssh acctsvc@$FLOATING_IP '[ $(mount | grep "type nfs" | wc -l) -eq 6 ]' || FAILED=true
fi
- |
if [ $FAILED ]; then
if [ "$FAILED" = true ]; then
openstack server delete $NEW_INSTANCE_ID
openstack image delete $BUILT_OOD_IMAGE_ID
false
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment