Browse Source

[master] [1895] editorial: added a missing space in an error message.

not directly related to this branch, but the review comment on this point
for the previous change should actually apply to this.
JINMEI Tatuya 13 years ago
parent
commit
e0cb5ab6d3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/bin/auth/tests/common_unittest.cc

+ 1 - 1
src/bin/auth/tests/common_unittest.cc

@@ -36,7 +36,7 @@ public:
         BOOST_FOREACH(const Environ &env, restoreEnviron) {
             if (env.second == NULL) {
                 EXPECT_EQ(0, unsetenv(env.first.c_str())) <<
-                    "Couldn't restore environment, results of other tests"
+                    "Couldn't restore environment, results of other tests "
                     "are uncertain";
             } else {
                 EXPECT_EQ(0, setenv(env.first.c_str(), env.second->c_str(),