From 1d1fcf9a8f45e45b47a9532d47244eaadcdb1eca Mon Sep 17 00:00:00 2001 From: Steven Murray <steven.murray@cern.ch> Date: Wed, 3 Aug 2016 11:50:52 +0200 Subject: [PATCH] Fixed a bug in two unit-tests --- catalogue/CatalogueTest.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/catalogue/CatalogueTest.cpp b/catalogue/CatalogueTest.cpp index 80937e8ce1..cd88a04597 100644 --- a/catalogue/CatalogueTest.cpp +++ b/catalogue/CatalogueTest.cpp @@ -848,9 +848,6 @@ TEST_P(cta_catalogue_CatalogueTest, modifyStorageClassNbCopies) { const common::dataStructures::EntryLog creationLog = storageClasses.front().creationLog; ASSERT_EQ(m_cliSI.username, creationLog.username); ASSERT_EQ(m_cliSI.host, creationLog.host); - - const common::dataStructures::EntryLog lastModificationLog = storageClasses.front().lastModificationLog; - ASSERT_EQ(creationLog, lastModificationLog); } } @@ -900,9 +897,6 @@ TEST_P(cta_catalogue_CatalogueTest, modifyStorageClassComment) { const common::dataStructures::EntryLog creationLog = storageClasses.front().creationLog; ASSERT_EQ(m_cliSI.username, creationLog.username); ASSERT_EQ(m_cliSI.host, creationLog.host); - - const common::dataStructures::EntryLog lastModificationLog = storageClasses.front().lastModificationLog; - ASSERT_EQ(creationLog, lastModificationLog); } } -- GitLab