From ebcd605bf8a729bfe727a13254c1a6e603701704 Mon Sep 17 00:00:00 2001 From: Emily Boudreaux Date: Wed, 30 Apr 2025 11:49:50 -0400 Subject: [PATCH] test(composition_sandbox): removed config loaded since not needed note that this will break (throw runtime errors) the sandbox if it is compiled in a build directory which has had -Dconfig_error_handling=harsh set --- tests/composition_sandbox/comp.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/composition_sandbox/comp.cpp b/tests/composition_sandbox/comp.cpp index b628108..13e2c56 100644 --- a/tests/composition_sandbox/comp.cpp +++ b/tests/composition_sandbox/comp.cpp @@ -9,7 +9,6 @@ int main(int argv, char* argc[]) { } else { pathToConfigFile = "config.json"; } - Config::getInstance().loadConfig(pathToConfigFile); composition::Composition comp; std::vector symbols = {"H-1", "He-4"}; comp.registerSymbol(symbols);