diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2013-01-24 18:57:26 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2013-01-24 18:59:30 +0100 |
commit | c2f58887eca4b0fce0b56f0763ee5be0d04e671f (patch) | |
tree | 89cb64e906e2a9c14b1253c3b8ca79c05849017f /shell | |
parent | 585b080046eca4d2bb60c92e5cf6bf5e644e7590 (diff) |
Fix Same expression on both sides of '=='
Change-Id: I37ef5de92296b7ea7d7d44fa6701ad025d94435e
Diffstat (limited to 'shell')
-rw-r--r-- | shell/qa/zip/testimpl/testzipimpl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/qa/zip/testimpl/testzipimpl.cxx b/shell/qa/zip/testimpl/testzipimpl.cxx index 241c4d50d00a..9aaa9db92d6b 100644 --- a/shell/qa/zip/testimpl/testzipimpl.cxx +++ b/shell/qa/zip/testimpl/testzipimpl.cxx @@ -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() |