Skip to content

Commit

Permalink
usar um decimal real para validação de 422
Browse files Browse the repository at this point in the history
  • Loading branch information
zanfranceschi committed Feb 5, 2024
1 parent 122531b commit 430cd19
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ class RinhaBackendCrebitosSimulation
http("validações")
.post("/clientes/1/transacoes")
.header("content-type", "application/json")
.body(StringBody(s"""{"valor": 1.0, "tipo": "d", "descricao": "devolve"}"""))
.body(StringBody(s"""{"valor": 1.2, "tipo": "d", "descricao": "devolve"}"""))
.check(status.in(422))
)
.exec(
Expand Down

1 comment on commit 430cd19

@thales-maciel
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

valor deve um número inteiro positivo que representa centavos (não vamos trabalhar com frações de centavos)

isso não significa que o status dessa requisição deveria ser 400?

Please sign in to comment.