From af273fbfc389d1f714cf3880501d4c56eca7405a Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 27 Apr 2016 18:10:21 -0400 Subject: [PATCH] Remove the creation of a test user. --- mayan/apps/folders/tests/test_models.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/mayan/apps/folders/tests/test_models.py b/mayan/apps/folders/tests/test_models.py index ca4682f94d..cce48cc466 100644 --- a/mayan/apps/folders/tests/test_models.py +++ b/mayan/apps/folders/tests/test_models.py @@ -1,6 +1,5 @@ from __future__ import unicode_literals -from django.contrib.auth import get_user_model from django.test import TestCase from documents.models import DocumentType @@ -25,11 +24,6 @@ class FolderTestCase(TestCase): file_object=file_object ) - self.user = get_user_model().objects.create_superuser( - username=TEST_ADMIN_USERNAME, email=TEST_ADMIN_EMAIL, - password=TEST_ADMIN_PASSWORD - ) - def tearDown(self): self.document_type.delete()