summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Application/UnitTest/ApplicationPathProviderTest.cpp')
-rw-r--r--Swiften/Application/UnitTest/ApplicationPathProviderTest.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Swiften/Application/UnitTest/ApplicationPathProviderTest.cpp b/Swiften/Application/UnitTest/ApplicationPathProviderTest.cpp
index 75b8639..3b46e6e 100644
--- a/Swiften/Application/UnitTest/ApplicationPathProviderTest.cpp
+++ b/Swiften/Application/UnitTest/ApplicationPathProviderTest.cpp
@@ -14,7 +14,7 @@ using namespace Swift;
class ApplicationPathProviderTest : public CppUnit::TestFixture {
CPPUNIT_TEST_SUITE(ApplicationPathProviderTest);
- CPPUNIT_TEST(testGetSettingsDir);
+ CPPUNIT_TEST(testGetDataDir);
CPPUNIT_TEST(testGetExecutableDir);
CPPUNIT_TEST_SUITE_END();
@@ -27,8 +27,8 @@ class ApplicationPathProviderTest : public CppUnit::TestFixture {
delete testling_;
}
- void testGetSettingsDir() {
- boost::filesystem::path dir = testling_->getSettingsDir();
+ void testGetDataDir() {
+ boost::filesystem::path dir = testling_->getDataDir();
CPPUNIT_ASSERT(boost::filesystem::exists(dir));
CPPUNIT_ASSERT(boost::filesystem::is_directory(dir));