From e8716e68ae4cc71aa1484dbc950bbd1cd87c038a Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Mon, 6 Jul 2009 01:24:35 -0400 Subject: [PATCH] Bug Fix - t.t.cpp was throwing an error because UUID is no longer set in Task::Task and so the sample task t3 was 'empty', which doesn't sit well with the round trip testing. --- src/tests/t.t.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tests/t.t.cpp b/src/tests/t.t.cpp index 8fe7dec5c..2e1cc39b6 100644 --- a/src/tests/t.t.cpp +++ b/src/tests/t.t.cpp @@ -46,6 +46,7 @@ int main (int argc, char** argv) // Round-trip testing. Task t3; + t3.set ("name", "value"); std::string before = t3.composeF4 (); t3.parse (before); std::string after = t3.composeF4 ();