Browse Source

HOT-FIX: Ajusta testes unitários

pull/2134/head
VictorFabreF 6 years ago
parent
commit
3bc24ec38b
  1. 4
      sapl/sessao/forms.py
  2. 2
      sapl/sessao/tests/test_sessao.py
  3. 2
      sapl/sessao/tests/test_sessao_view.py

4
sapl/sessao/forms.py

@ -100,8 +100,8 @@ class SessaoPlenariaForm(ModelForm):
# Condições da verificação
abertura_entre_leg = leg.data_inicio < abertura < leg.data_fim
abertura_entre_sl = sl.data_inicio < abertura < sl.data_fim
abertura_entre_leg = leg.data_inicio <= abertura <= leg.data_fim
abertura_entre_sl = sl.data_inicio <= abertura <= sl.data_fim
if encerramento is not None:
encerramento_entre_leg = leg.data_inicio < encerramento < leg.data_fim
encerramento_entre_sl = sl.data_inicio < encerramento < sl.data_fim

2
sapl/sessao/tests/test_sessao.py

@ -37,7 +37,7 @@ def test_sessao_plenaria_form_valido():
'numero': '1',
'tipo': str(tipo.pk),
'sessao_legislativa': str(sessao.pk),
'data_inicio': '10/11/2017',
'data_inicio': str(sessao.data_inicio),
'hora_inicio': '10:10',
'painel_aberto': False
})

2
sapl/sessao/tests/test_sessao_view.py

@ -18,7 +18,7 @@ def test_incluir_sessao_plenaria_submit(admin_client):
'numero': '1',
'tipo': str(tipo.pk),
'sessao_legislativa': str(sessao.pk),
'data_inicio': '10/11/2017',
'data_inicio': str(sessao.data_inicio),
'hora_inicio': '10:10'
}, follow=True)

Loading…
Cancel
Save