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:
249249 @staticmethod
250250 def validate_data_avaliacao_not_future (data_avaliacao_registros_execucao : date ) -> date :
251251 """Valida se a data de avaliação é inferior ou igual a data de envio."""
252- print (data_avaliacao_registros_execucao )
253252 if data_avaliacao_registros_execucao > date .today ():
254253 raise ValueError (
255254 "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(
321321 input_pt ["avaliacoes_registros_execucao" ][0 ][
322322 "data_avaliacao_registros_execucao"
323323 ] = data_avaliacao_registros_execucao
324- print (input_pt )
325324 response = self .put_plano_trabalho (input_pt )
326325 if date .fromisoformat (data_avaliacao_registros_execucao ) > date .today ():
327326 assert response .status_code == status .HTTP_422_UNPROCESSABLE_ENTITY
You can’t perform that action at this time.
0 commit comments