From c07a373d2399f3e686234c4f7f088d635eb9641b Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Sun, 21 Jul 2013 17:52:12 +0200 Subject: [PATCH] Fix test name --- tests/MoneyTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/MoneyTest.php b/tests/MoneyTest.php index 4036cf98..9827eede 100644 --- a/tests/MoneyTest.php +++ b/tests/MoneyTest.php @@ -87,7 +87,7 @@ public function testCurrencyCanBeRetrieved(Money $m) * @covers SebastianBergmann\Money\Money::add * @covers SebastianBergmann\Money\Money::newMoney */ - public function testAnotherMoneyWithSameCurrencyObjectCanBeAdded() + public function testAnotherMoneyObjectWithSameCurrencyCanBeAdded() { $a = new Money(1, new Currency('EUR')); $b = new Money(2, new Currency('EUR'));