From 1b6faf57c998617024d0348a87b941a5d2ab2249 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Fri, 24 Apr 2009 00:09:59 -0400 Subject: [PATCH] Unit Tests - correction to T::compose tests - Uses " instead of ' to quote annotations. --- src/tests/t.t.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/t.t.cpp b/src/tests/t.t.cpp index e36012988..b0a30c6ae 100644 --- a/src/tests/t.t.cpp +++ b/src/tests/t.t.cpp @@ -86,7 +86,7 @@ int main (int argc, char** argv) t.setDescription ("sample"); std::string format = t.compose (); test.is (format.substr (36, 20), " - [foo] [bar:baz] [", "compose tag, attribute"); - test.is (format.substr (66, 16), ":'woof'] sample\n", "compose annotation"); + test.is (format.substr (66, 16), ":\"woof\"] sample\n", "compose annotation"); test.is (t.getAnnotationCount (), 1, "annotation count"); return 0;