From ba70d0aadb4c497b099590e1d80c0de197bea932 Mon Sep 17 00:00:00 2001 From: spl0k Date: Thu, 26 Oct 2017 23:17:37 +0200 Subject: [PATCH] Renamed test module --- tests/__init__.py | 2 +- tests/{db.py => test_db.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename tests/{db.py => test_db.py} (100%) diff --git a/tests/__init__.py b/tests/__init__.py index 1f54e6d..9867da1 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -11,7 +11,7 @@ import unittest -from .db import DbTestCase +from .test_db import DbTestCase from .test_manager_folder import FolderManagerTestCase from .test_manager_user import UserManagerTestCase diff --git a/tests/db.py b/tests/test_db.py similarity index 100% rename from tests/db.py rename to tests/test_db.py