Skip to content

Commit

Permalink
Disable sumFirstNDoubledValues test
Browse files Browse the repository at this point in the history
The test 'sumFirstNDoubledValues' in SumBigDecimalsTest class has been disabled temporarily until the demo. This is to prevent any potential failures during the testing phase due to this test.
  • Loading branch information
kousen committed May 20, 2024
1 parent a7e0201 commit a908437
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/streams/SumBigDecimalsTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public void sumFirstN_usingReduce() {
assertEquals(new BigDecimal("55"), answer);
}

@Test //@Disabled("disable until demo")
@Test @Disabled("disable until demo")
public void sumFirstNDoubledValues() {
BigDecimal answer = summer.sumDoubles(10);

Expand Down

0 comments on commit a908437

Please sign in to comment.