From 95202d059aa336257ad3f25da4b907ede83872f4 Mon Sep 17 00:00:00 2001 From: Martchus Date: Fri, 4 Jun 2021 16:04:26 +0200 Subject: [PATCH] Fix typo --- tests/testutils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/testutils.cpp b/tests/testutils.cpp index 37cd805..c75b8c0 100644 --- a/tests/testutils.cpp +++ b/tests/testutils.cpp @@ -516,7 +516,7 @@ int TestApplication::execApp(const char *const *args, string &output, string &er if (testAppPathLength > 6 && !strcmp(testAppPath + testAppPathLength - 6, "_tests")) { fallbackAppPath.assign(testAppPath, testAppPathLength - 6); appPath = fallbackAppPath.data(); - // TODO: it would not hurt to verify whether "fallbackAppPath" actually exists and is executalbe + // TODO: it would not hurt to verify whether "fallbackAppPath" actually exists and is executable } else { throw runtime_error("Unable to execute application to be tested: no application path specified"); }