aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/slime/slime_json_format_test.cpp
diff options
context:
space:
mode:
authorArnstein Ressem <aressem@gmail.com>2016-11-02 23:26:40 +0100
committerArnstein Ressem <aressem@gmail.com>2016-11-02 23:26:40 +0100
commit99480b4d72abf3688060d7643816680a30963f74 (patch)
tree966d8494bca9292e6be2877d91ed838953856f0f /vespalib/src/tests/slime/slime_json_format_test.cpp
parent3d18773cf5357250cb2d35d6e8c13477db6e20a3 (diff)
Removed TestApp::GetSourceDirectory
Diffstat (limited to 'vespalib/src/tests/slime/slime_json_format_test.cpp')
-rw-r--r--vespalib/src/tests/slime/slime_json_format_test.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/vespalib/src/tests/slime/slime_json_format_test.cpp b/vespalib/src/tests/slime/slime_json_format_test.cpp
index 7995584f60b..c054cc5a428 100644
--- a/vespalib/src/tests/slime/slime_json_format_test.cpp
+++ b/vespalib/src/tests/slime/slime_json_format_test.cpp
@@ -1,7 +1,6 @@
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include <vespa/fastos/fastos.h>
#include <vespa/vespalib/testkit/test_kit.h>
-#include <vespa/vespalib/testkit/testapp.h>
#include <vespa/vespalib/data/slime/slime.h>
#include <iostream>
#include <fstream>
@@ -352,7 +351,7 @@ TEST("decode simplified form") {
}
TEST_F("decode bytes not null-terminated", Slime) {
- std::ifstream file(vespalib::TestApp::GetSourceDirectory() + "large_json.txt");
+ std::ifstream file(TEST_PATH("large_json.txt"));
ASSERT_TRUE(file.is_open());
std::stringstream buf;
buf << file.rdbuf();