minio / mint

Collection of tests to detect overall correctness of MinIO server.
Apache License 2.0
78 stars 50 forks source link

fix etag comparison in awscli test #307

Closed poornas closed 5 years ago

poornas commented 5 years ago

awscli test_multipart_upload_0byte test fails though etags match because of incorrect comparison operator.

harshavardhana commented 5 years ago

awscli test_multipart_upload_0byte test fails though etags match because of incorrect comparison operator.

This is not correct -ne is an integer operation doesn't work on strings.

poornas commented 5 years ago

you're right - extra quotes around the ETag wasn't being stripped off. fixed

harshavardhana commented 5 years ago

https://github.com/minio/mint/commit/5622ff5d668953b70804dd17a345c583d6af14f5 this PR was already merged with the change. I don't know why it's not there in the actual repo.