summaryrefslogtreecommitdiff
path: root/test/headless
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2015-05-14 13:03:12 -0700
committerJohn Firebaugh <john.firebaugh@gmail.com>2015-05-14 13:03:12 -0700
commitd1107fb4ed5d006bad3c8c1837f03a70c0e14200 (patch)
tree49060f2bce47a47317c15915c6191622840346d4 /test/headless
parent7d4f12434e393558344d053dc5809ce586d3fbbd (diff)
downloadqtlocation-mapboxgl-d1107fb4ed5d006bad3c8c1837f03a70c0e14200.tar.gz
Fix misleading headless test output (fixes #1557)
Diffstat (limited to 'test/headless')
-rw-r--r--test/headless/headless.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/headless/headless.cpp b/test/headless/headless.cpp
index 38fbf63b59..a02062dbdd 100644
--- a/test/headless/headless.cpp
+++ b/test/headless/headless.cpp
@@ -104,14 +104,12 @@ TEST_P(HeadlessTest, render) {
ASSERT_FALSE(infoDoc.HasParseError());
ASSERT_TRUE(infoDoc.IsObject());
- Log::setObserver(util::make_unique<FixtureLogObserver>());
-
for (auto it = infoDoc.MemberBegin(), end = infoDoc.MemberEnd(); it != end; it++) {
const std::string name {
it->name.GetString(), it->name.GetStringLength()
};
- Log::Info(Event::General, "test fixture %s %s", base.c_str(), name.c_str());
+ Log::Info(Event::General, "%s %s", base.c_str(), name.c_str());
const rapidjson::Value& value = it->value;
ASSERT_TRUE(value.IsObject());