From 20356028364afac626a580bd80e0bec2fc5c99f6 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 8 Jun 2016 01:26:01 -0400 Subject: [PATCH] Make the organization and rest api tests cleaner to import from other modules. --- mayan/apps/organizations/tests/__init__.py | 1 + mayan/apps/rest_api/tests/__init__.py | 1 + 2 files changed, 2 insertions(+) diff --git a/mayan/apps/organizations/tests/__init__.py b/mayan/apps/organizations/tests/__init__.py index e69de29bb2..bd2ca6fbdd 100644 --- a/mayan/apps/organizations/tests/__init__.py +++ b/mayan/apps/organizations/tests/__init__.py @@ -0,0 +1 @@ +from .base import OrganizationTestCase #NOQA diff --git a/mayan/apps/rest_api/tests/__init__.py b/mayan/apps/rest_api/tests/__init__.py index e69de29bb2..f119bc4a90 100644 --- a/mayan/apps/rest_api/tests/__init__.py +++ b/mayan/apps/rest_api/tests/__init__.py @@ -0,0 +1 @@ +from .base import GenericAPITestCase #NOQA