aboutsummaryrefslogtreecommitdiffstats
path: root/tests/testRunner.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testRunner.cpp')
-rw-r--r--tests/testRunner.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/testRunner.cpp b/tests/testRunner.cpp
index c49090f0..8700ea16 100644
--- a/tests/testRunner.cpp
+++ b/tests/testRunner.cpp
@@ -210,7 +210,7 @@ int main(int argc, char* argv[])
// Run the tests
if (xmlOutput)
{
- // Get the test suites from the registry and add them to the list of test to run
+ // Get the test suites from the registry and add them to the list of tests to run
CppUnit::TestRunner runner;
for (unsigned int i = 0 ; i < getTestModules().size() ; ++i)
@@ -231,7 +231,7 @@ int main(int argc, char* argv[])
xmlListener->output(std::cout);
- // Return error code 1 if the one of test failed
+ // Return error code 1 if a test failed
return result.wasSuccessful() ? 0 : 1;
}
else