From d4b8c849963f4a75852941cf89e5cdc3f8a1003c Mon Sep 17 00:00:00 2001 From: Michael Kaess Date: Sat, 10 Jul 2010 14:15:08 +0000 Subject: [PATCH] other colamd test fixed --- cpp/testNonlinearFactorGraph.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/testNonlinearFactorGraph.cpp b/cpp/testNonlinearFactorGraph.cpp index 3b91cbcdd..c2816a2bd 100644 --- a/cpp/testNonlinearFactorGraph.cpp +++ b/cpp/testNonlinearFactorGraph.cpp @@ -50,7 +50,7 @@ TEST( Graph, error ) TEST( Graph, GET_ORDERING) { Ordering expected; - expected += "l1","x1","x2"; + expected += "l1","x2","x1"; Graph nlfg = createNonlinearFactorGraph(); Ordering actual = nlfg.getOrdering(); CHECK(assert_equal(expected,actual));