From ee31cad3969bd27d10b552dee4855195a0756fe1 Mon Sep 17 00:00:00 2001 From: cclauss Date: Tue, 3 Apr 2018 21:39:29 +0200 Subject: [PATCH] import unittest for line 26 --- tests/test_settings.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tests/test_settings.py b/tests/test_settings.py index a89ab435..973780d4 100644 --- a/tests/test_settings.py +++ b/tests/test_settings.py @@ -1,8 +1,9 @@ #!/usr/bin/env python -from unittest import TestCase -import time -import sys import os +import sys +import time +import unittest + __author__ = 'TzuTaLin' dir_name = os.path.abspath(os.path.dirname(__file__)) @@ -10,7 +11,7 @@ libs_path = os.path.join(dir_name, '..', 'libs') sys.path.insert(0, libs_path) from settings import Settings -class TestSettings(TestCase): +class TestSettings(unittest.TestCase): def test_basic(self): wSetting = Settings()