Skip to content

Commit

Permalink
Ajuste testes para não gerarem falhas
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelodebittencourt committed Jul 7, 2021
1 parent 5010228 commit 0b1da21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/tests/ClienteTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ void TestaNomeCliente_ValidaNomeCorreto() {
@Test
void TestaNomeCliente_ValidaNomeCorretoComAssertJ() {
Cliente clienteVip = new Cliente("Fulano de Tal");
assertThat(clienteVip.getNome()).isEqualTo("XFulano de Tal");
assertThat(clienteVip.getNome()).isEqualTo("Fulano de Tal");
}

@ParameterizedTest
Expand Down

0 comments on commit 0b1da21

Please sign in to comment.