From 40dfb3442ef617c2f4a4424ba2fee97b12b016a7 Mon Sep 17 00:00:00 2001 From: massung1 <massung1@6fbd10e7-183d-0410-a318-cb416676e4f2> Date: Sun, 16 Sep 2012 22:31:52 +0000 Subject: [PATCH] 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 --- source/monad.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/source/monad.cpp b/source/monad.cpp index 59486ec..4b880f0 100644 --- a/source/monad.cpp +++ b/source/monad.cpp @@ -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 -- GitLab