diff --git a/src/tests/catch_tests.cxx b/src/tests/catch_tests.cxx index 3ac16216..c1194da9 100644 --- a/src/tests/catch_tests.cxx +++ b/src/tests/catch_tests.cxx @@ -16,7 +16,7 @@ class testRunListener : public Catch::EventListenerBase { void testRunStarting(Catch::TestRunInfo const&) override { if (!std::filesystem::exists(FLUIDDATAPATH)){ - throw std::invalid_argument("Tests must be run from the folder where this folder points to a valid location relative to current working diretory: " + FLUIDDATAPATH); + throw std::invalid_argument("Tests must be run from the folder where this folder points to a valid location relative to current working directory: " + FLUIDDATAPATH); } } };