[Libreoffice-commits] cppunit.git: examples/money

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Thu Nov 28 19:57:36 UTC 2019


 examples/money/MoneyTest.h |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit ce97a647a901b4ebb34dc6806ab0c4d2885e92e1
Author:     Markus Mohrhard <markus.mohrhard at googlemail.com>
AuthorDate: Fri Nov 29 03:56:13 2019 +0800
Commit:     Markus Mohrhard <markus.mohrhard at googlemail.com>
CommitDate: Fri Nov 29 03:56:42 2019 +0800

    tdf#126163: fix regression from 339b60ab77ce3f2037c9410eb14251c8132df08a

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:


More information about the Libreoffice-commits mailing list