From 455223df1cc57fb911cabfb50aaa4047265542e5 Mon Sep 17 00:00:00 2001 From: phredi Date: Tue, 24 May 2016 22:17:50 -0500 Subject: [PATCH] fix to pass tests --- tests/main.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/main.cpp b/tests/main.cpp index 44adabbbd..9d72da520 100644 --- a/tests/main.cpp +++ b/tests/main.cpp @@ -34,10 +34,7 @@ const EQEmuConfig *Config; int main() { - if(!EQEmuConfig::LoadConfig()) { - std::cout << "Problem loading configuration." << std::endl; - return 1; - } + auto ConfigLoadResult = EQEmuConfig::LoadConfig(); Config = EQEmuConfig::get(); try { std::ofstream outfile("test_output.txt");