Logger in this test somehow breaks code coverage. Argh...

Reviewers: buda, dgleich

Reviewed By: dgleich

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D240
This commit is contained in:
Matej Ferencevic 2017-04-06 16:41:18 +02:00
parent 984c898cfe
commit 72f7b64c8f

View File

@ -16,7 +16,6 @@
#include "gtest/gtest.h"
#include "data_structures/concurrent/skiplist.hpp"
#include "logging/default.cpp"
#include "utils/random/random_generator.hpp"
using utils::random::NumberGenerator;
@ -410,9 +409,6 @@ TEST(SkipListReverseIteratorTest, DeleteWhileIteratingTest) {
}
int main(int argc, char** argv) {
logging::init_sync();
logging::log->pipe(std::make_unique<Stdout>());
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}