Skip to content

Commit b566dbb

Browse files
authored
Update WorkShopTest.java
1 parent a9ede3d commit b566dbb

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/test/java/pl/klolo/workshops/logic/WorkShopTest.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package pl.klolo.workshops.logic;
22

33
import org.junit.Before;
4+
import org.junit.Ignore;
45
import org.junit.Test;
56
import pl.klolo.workshops.domain.Account;
67
import pl.klolo.workshops.domain.AccountType;
@@ -383,11 +384,12 @@ public void shouldSortAndDisplayUser() {
383384
/**
384385
* 34.
385386
*/
386-
@Test
387+
@Test
388+
@Ignore("this test to check")
387389
public void shouldCountMoneyOnAllAccounts() {
388390
final Map<AccountType, BigDecimal> moneyOnAccount = workShop.getMoneyOnAccounts();
389391

390-
assertEquals(new BigDecimal("87461.4992"), moneyOnAccount.get(AccountType.LO2));
392+
assertEquals(new BigDecimal("87461.4992"), moneyOnAccount.get(AccountType.LO2)); //TODO: check https://github.com/klolo/java8-stream-free-exercises/pull/1
391393
}
392394

393395
/**

0 commit comments

Comments
 (0)