Skip to content

Commit

Permalink
Fix teste
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigofcr authored Jan 30, 2024
1 parent 619d3cf commit e2ab5ff
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -212,10 +212,10 @@ public void boletoDeveAceitarNoMaximoDoisLocais() {
}

@Test
public void valorCobradoDeveSerZeroSemAcrescimoOuDescontos() {
public void valorCobradoDeveSerIgualAValorBoletoQuandoSemAcrescimoOuDescontos() {
Boleto b = Boleto.novoBoleto();
b.comValorBoleto("40.00");
assertEquals(BigDecimal.ZERO, b.getValorCobrado());
assertEquals(b.getValorBoleto(), b.getValorCobrado());
}

@Test
Expand Down

0 comments on commit e2ab5ff

Please sign in to comment.