Skip to content
Snippets Groups Projects
Commit 40dfb344 authored by massung1's avatar massung1
Browse files

fixed silly bug in monad output where the .1 was after the date

git-svn-id: https://subversion.cs.illinois.edu/svn/cs225@7758 6fbd10e7-183d-0410-a318-cb416676e4f2
parent 8e6e92a8
No related branches found
No related tags found
No related merge requests found
......@@ -88,11 +88,10 @@ int main(int argc, const char * const * argv)
processArgs(argc, argv);
cout << versioninfo::official_name << endl;
cout << "Testing " << assignment_base << " at " << getTime() << endl;
cout << "Testing " << assignment_base;
if (mp_part != no_mp_part) cout << '.' << (int)mp_part;
cout << endl << getRandomQuote() << endl;
cout << endl;
cout << " at " << getTime() << endl;
cout << endl << getRandomQuote() << endl << endl;
cout << "Setting up test environment..." << endl;
// Read in test-specific config settings
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment