diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-09-14 02:52:41 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-09-14 02:52:41 +0300 |
commit | 4133ef1e7821cae6205d4ee5a8e3277eec9fe540 (patch) | |
tree | 3666e5d95da67dbe7ef739b41f78170885be97d4 /src/unittests/resources/dye/dye.cc | |
parent | bb980aaf7a61f8d0fe03f7def03795d5f5d8d2a0 (diff) | |
download | manaverse-4133ef1e7821cae6205d4ee5a8e3277eec9fe540.tar.gz manaverse-4133ef1e7821cae6205d4ee5a8e3277eec9fe540.tar.bz2 manaverse-4133ef1e7821cae6205d4ee5a8e3277eec9fe540.tar.xz manaverse-4133ef1e7821cae6205d4ee5a8e3277eec9fe540.zip |
Fix unit tests error with undefined config variable.
Diffstat (limited to 'src/unittests/resources/dye/dye.cc')
-rw-r--r-- | src/unittests/resources/dye/dye.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/unittests/resources/dye/dye.cc b/src/unittests/resources/dye/dye.cc index ada0f5d40..a0294a84f 100644 --- a/src/unittests/resources/dye/dye.cc +++ b/src/unittests/resources/dye/dye.cc @@ -1963,6 +1963,12 @@ TEST_CASE("Dye real dye", "") VirtFs::mountDirSilent("data/test", Append_false); VirtFs::mountDirSilent("../data/test", Append_false); + Dirs::initRootDir(); + Dirs::initHomeDir(); + + setBrandingDefaults(branding); + ConfigManager::initConfiguration(); + #ifdef USE_SDL2 imageHelper = new SurfaceImageHelper; @@ -1978,12 +1984,6 @@ TEST_CASE("Dye real dye", "") userPalette = new UserPalette; - Dirs::initRootDir(); - Dirs::initHomeDir(); - - setBrandingDefaults(branding); - ConfigManager::initConfiguration(); - theme = new Theme; Theme::selectSkin(); |