summaryrefslogtreecommitdiff
path: root/indra/llcommon/tests/llerror_test.cpp
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2011-03-11 19:42:26 -0500
committerOz Linden <oz@lindenlab.com>2011-03-11 19:42:26 -0500
commit7309fda08c5bd13c1966a4024f193074f0b4a410 (patch)
treeb7eea9121560e1d13ed41f9dd5946738755da320 /indra/llcommon/tests/llerror_test.cpp
parent4223ab9acf282f52aac2bcf124f4b2912c2fe88e (diff)
parentc20eb01ff2adfc23b83d1d5c8723962f794fdbf4 (diff)
sync up to latest viewer-development
Diffstat (limited to 'indra/llcommon/tests/llerror_test.cpp')
-rw-r--r--indra/llcommon/tests/llerror_test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/llcommon/tests/llerror_test.cpp b/indra/llcommon/tests/llerror_test.cpp
index 2350059626..09a20231de 100644
--- a/indra/llcommon/tests/llerror_test.cpp
+++ b/indra/llcommon/tests/llerror_test.cpp
@@ -59,7 +59,7 @@ namespace tut
~TestRecorder() { LLError::removeRecorder(this); }
void recordMessage(LLError::ELevel level,
- const std::string& message)
+ const std::string& message)
{
mMessages.push_back(message);
}
@@ -69,12 +69,12 @@ namespace tut
void setWantsTime(bool t) { mWantsTime = t; }
bool wantsTime() { return mWantsTime; }
-
+
std::string message(int n)
{
std::ostringstream test_name;
test_name << "testing message " << n << ", not enough messages";
-
+
tut::ensure(test_name.str(), n < countMessages());
return mMessages[n];
}