summaryrefslogtreecommitdiff
path: root/src/testsmain.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/testsmain.cpp')
-rw-r--r--src/testsmain.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testsmain.cpp b/src/testsmain.cpp
index b9beadec..2f24cc48 100644
--- a/src/testsmain.cpp
+++ b/src/testsmain.cpp
@@ -37,8 +37,8 @@ int main(int argc, char* argv[])
runner.addTest(suite);
// run the tests.
- bool wasSucessful = runner.run();
+ bool wasSuccessful = runner.run();
// return error code 1 if the one of test failed.
- return wasSucessful ? 0 : 1;
+ return wasSuccessful ? 0 : 1;
}