Skip to content

Commit

Permalink
Fixes typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tinganho committed Nov 19, 2016
1 parent 630c18a commit 28cf3ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/TestFramework/Core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,11 @@ int printResult() {
string domain = domain_size == 1 ? " domain" : " domains";
cout << " " + to_string(domain_size) + domain << endl;

if (testsFailed > 0) {
if (tests_failed > 0) {
cout << endl;
cout << "Failed tests:" << endl;
cout << endl;
for (auto const & t : failedTests) {
for (auto const & t : failed_tests) {
cout << "\e[31m " + t->name + "\e[0m" << endl;
}
}
Expand Down

0 comments on commit 28cf3ed

Please sign in to comment.