summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--examples/money/MoneyTest.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/money/MoneyTest.h b/examples/money/MoneyTest.h
index 7a8e719..475f2e9 100644
--- a/examples/money/MoneyTest.h
+++ b/examples/money/MoneyTest.h
@@ -3,7 +3,6 @@
#define MONEYTEST_H
#include <cppunit/extensions/HelperMacros.h>
-#include "Money.h"
class MoneyTest : public CPPUNIT_NS::TestFixture
{
@@ -11,7 +10,7 @@ class MoneyTest : public CPPUNIT_NS::TestFixture
CPPUNIT_TEST( testConstructor );
CPPUNIT_TEST( testEqual );
CPPUNIT_TEST( testAdd );
- CPPUNIT_TEST_EXCEPTION( testAddThrow, IncompatibleMoneyError );
+ CPPUNIT_TEST( testAddThrow );
CPPUNIT_TEST_SUITE_END();
public: