File tree Expand file tree Collapse file tree 2 files changed +0
-2
lines changed Expand file tree Collapse file tree 2 files changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -249,7 +249,6 @@ def validate_avaliacao_registros_execucao(value: int) -> int:
249
249
@staticmethod
250
250
def validate_data_avaliacao_not_future (data_avaliacao_registros_execucao : date ) -> date :
251
251
"""Valida se a data de avaliação é inferior ou igual a data de envio."""
252
- print (data_avaliacao_registros_execucao )
253
252
if data_avaliacao_registros_execucao > date .today ():
254
253
raise ValueError (
255
254
"A data de avaliação de registros de execução não pode ser "
Original file line number Diff line number Diff line change @@ -321,7 +321,6 @@ def test_create_pt_data_avaliacao_future_date(
321
321
input_pt ["avaliacoes_registros_execucao" ][0 ][
322
322
"data_avaliacao_registros_execucao"
323
323
] = data_avaliacao_registros_execucao
324
- print (input_pt )
325
324
response = self .put_plano_trabalho (input_pt )
326
325
if date .fromisoformat (data_avaliacao_registros_execucao ) > date .today ():
327
326
assert response .status_code == status .HTTP_422_UNPROCESSABLE_ENTITY
You can’t perform that action at this time.
0 commit comments