From baa032d2dc39eb4a6844d4de32997ad3686acf77 Mon Sep 17 00:00:00 2001 From: cclauss Date: Tue, 3 Apr 2018 21:37:36 +0200 Subject: [PATCH] import unittest for line 32 --- tests/test_io.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_io.py b/tests/test_io.py index 67e0b5bb..bfdb8a08 100644 --- a/tests/test_io.py +++ b/tests/test_io.py @@ -1,8 +1,8 @@ -from unittest import TestCase -import sys import os +import sys +import unittest -class TestPascalVocRW(TestCase): +class TestPascalVocRW(unittest.TestCase): def test_upper(self): dir_name = os.path.abspath(os.path.dirname(__file__))