Kaydet (Commit) c2f58887 authored tarafından Julien Nabet's avatar Julien Nabet

Fix Same expression on both sides of '=='

Change-Id: I37ef5de92296b7ea7d7d44fa6701ad025d94435e
üst 585b0800
......@@ -54,7 +54,7 @@ bool TestZipImpl::test_directory()
ZipFile::DirectoryPtr_t contents = zipFile.GetDirectory();
vector<string> &stringVector = *contents.get();
sort(stringVector.begin(), stringVector.end());
return expectedContents == expectedContents;
return expectedContents == stringVector;
}
bool TestZipImpl::test_hasContentCaseInSensitive()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment