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
No related merge requests found
...@@ -196,7 +196,7 @@ test: ...@@ -196,7 +196,7 @@ test:
ssh acctsvc@$FLOATING_IP '[ $(mount | grep "type nfs" | wc -l) -eq 6 ]' || FAILED=true ssh acctsvc@$FLOATING_IP '[ $(mount | grep "type nfs" | wc -l) -eq 6 ]' || FAILED=true
fi fi
- | - |
if [ $FAILED ]; then if [ "$FAILED" = true ]; then
openstack server delete $NEW_INSTANCE_ID openstack server delete $NEW_INSTANCE_ID
openstack image delete $BUILT_OOD_IMAGE_ID openstack image delete $BUILT_OOD_IMAGE_ID
false 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