summaryrefslogtreecommitdiffstats
path: root/config/src/tests/getconfig/getconfig.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'config/src/tests/getconfig/getconfig.cpp')
-rw-r--r--config/src/tests/getconfig/getconfig.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/config/src/tests/getconfig/getconfig.cpp b/config/src/tests/getconfig/getconfig.cpp
index 27f4fcf7505..77e2f57dbc8 100644
--- a/config/src/tests/getconfig/getconfig.cpp
+++ b/config/src/tests/getconfig/getconfig.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/config/config.h>
#include <vespa/config/raw/rawsource.h>
#include "config-my.h"
@@ -35,7 +34,7 @@ TEST("requireThatGetConfigReturnsCorrectConfig")
TEST("requireThatGetConfigReturnsCorrectConfig")
{
- FileSpec spec(vespalib::TestApp::GetSourceDirectory() + "my.cfg");
+ FileSpec spec(TEST_PATH("my.cfg"));
std::unique_ptr<MyConfig> cfg = ConfigGetter<MyConfig>::getConfig("", spec);
ASSERT_TRUE(cfg.get() != NULL);
ASSERT_EQUAL("my", cfg->defName());