From 4ca860698abe7c2e8eb7792da508543dce057721 Mon Sep 17 00:00:00 2001 From: Chris Pastl <chris@crispybits.app> Date: Thu, 1 Jun 2023 20:45:34 +0200 Subject: [PATCH] fix module path containing BaseTestCase --- tests/test_internal_controller.py | 2 +- tests/test_public_controller.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_internal_controller.py b/tests/test_internal_controller.py index b36b93f..a509114 100644 --- a/tests/test_internal_controller.py +++ b/tests/test_internal_controller.py @@ -22,7 +22,7 @@ from __future__ import absolute_import from flask import json from aura_engine_api.rest.models.clock_info import ClockInfo # noqa: E501 -from aura_engine_api.rest.test import BaseTestCase +from tests import BaseTestCase class TestInternalController(BaseTestCase): diff --git a/tests/test_public_controller.py b/tests/test_public_controller.py index 431bb76..4d22c26 100644 --- a/tests/test_public_controller.py +++ b/tests/test_public_controller.py @@ -20,7 +20,7 @@ from __future__ import absolute_import # from aura_engine_api.rest.models.track import Track # noqa: E501 -from aura_engine_api.rest.test import BaseTestCase +from tests import BaseTestCase # from flask import json # from six import BytesIO -- GitLab