From 7b0c5590912295f6d20863d7cbbb6333180e30b5 Mon Sep 17 00:00:00 2001 From: Alex Cunningham Date: Fri, 9 Aug 2013 14:55:26 +0000 Subject: [PATCH] Fixed bug in 32 bit version - now calls correct keyformatter --- gtsam/nonlinear/tests/testLabeledSymbol.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtsam/nonlinear/tests/testLabeledSymbol.cpp b/gtsam/nonlinear/tests/testLabeledSymbol.cpp index edc4b77af..107c4502e 100644 --- a/gtsam/nonlinear/tests/testLabeledSymbol.cpp +++ b/gtsam/nonlinear/tests/testLabeledSymbol.cpp @@ -58,7 +58,7 @@ TEST( testLabeledSymbol, KeyLabeledSymbolEncoding ) { string str = "xA5"; EXPECT_LONGS_EQUAL(key, (Key)symbol); - EXPECT(assert_equal(str, DefaultKeyFormatter(symbol))); + EXPECT(assert_equal(str, MultiRobotKeyFormatter(symbol))); EXPECT(assert_equal(symbol, LabeledSymbol(key))); } }