Skip to content

Commit

Permalink
removing digit seperator
Browse files Browse the repository at this point in the history
  • Loading branch information
rparolin committed Jan 30, 2018
1 parent cba0583 commit cc46050
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/packages/EATest/source/EATest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -865,7 +865,7 @@ void Test::WriteReport()
{
char buffer[384];
EA::EAMain::ReportFunction pReportFunction = GetReportFunction();
EA::StdC::Sprintf(buffer, "%-24s - %s \t%2.4f secs\n", msTestName.c_str(), mnErrorCount ? "FAILED" : "PASSED", mnElapsedTestTimeInMicroseconds / 1'000'000.f);
EA::StdC::Sprintf(buffer, "%-24s - %s \t%2.4f secs\n", msTestName.c_str(), mnErrorCount ? "FAILED" : "PASSED", mnElapsedTestTimeInMicroseconds / 1000000.f);
pReportFunction(buffer);
}
}
Expand Down

0 comments on commit cc46050

Please sign in to comment.