From 45b3b161d4c40c3a9b92930096980bc9b0507221 Mon Sep 17 00:00:00 2001 From: Edward Ribeiro Date: Tue, 23 Aug 2016 17:16:16 -0300 Subject: [PATCH] Remove grupo_usuario_id de testes --- sapl/materia/tests/test_materia.py | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/sapl/materia/tests/test_materia.py b/sapl/materia/tests/test_materia.py index 3d3c4e266..fbba770d5 100644 --- a/sapl/materia/tests/test_materia.py +++ b/sapl/materia/tests/test_materia.py @@ -129,8 +129,7 @@ def test_autoria_submit(admin_client): autor = mommy.make( Autor, tipo=tipo_autor, - nome='Autor Teste', - grupo_usuario_id=8) + nome='Autor Teste') # Testa POST response = admin_client.post(reverse('sapl.materia:autoria_create', @@ -210,8 +209,7 @@ def test_documento_acessorio_submit(admin_client): autor = mommy.make( Autor, tipo=tipo_autor, - nome='Autor Teste', - grupo_usuario_id=8) + nome='Autor Teste') # Cria um tipo de documento tipo = mommy.make(TipoDocumento, @@ -442,8 +440,7 @@ def test_proposicao_submit(admin_client): Autor, user=user, tipo=tipo_autor, - nome='Autor Teste', - grupo_usuario_id=8) + nome='Autor Teste') file_content = 'file_content' texto = SimpleUploadedFile("file.txt", file_content.encode('UTF-8')) @@ -476,8 +473,7 @@ def test_form_errors_proposicao(admin_client): Autor, user=user, tipo=tipo_autor, - nome='Autor Teste', - grupo_usuario_id=8) + nome='Autor Teste') file_content = 'file_content' texto = SimpleUploadedFile("file.txt", file_content.encode('UTF-8'))