From 062bb35c950f0075ea3d8c5f7466e8ea381b4a7a Mon Sep 17 00:00:00 2001 From: Marcus Huewe Date: Sun, 19 Dec 2010 20:32:06 +0100 Subject: [PATCH] - removed unused imports --- tests/test_addfiles.py | 2 +- tests/test_deletefiles.py | 3 +-- tests/test_difffiles.py | 1 - tests/test_init_package.py | 3 +-- tests/test_init_project.py | 3 +-- tests/test_revertfiles.py | 3 +-- 6 files changed, 5 insertions(+), 10 deletions(-) diff --git a/tests/test_addfiles.py b/tests/test_addfiles.py index 45adac2c..129bc4d1 100644 --- a/tests/test_addfiles.py +++ b/tests/test_addfiles.py @@ -2,7 +2,7 @@ import osc.core import osc.oscerr import os import sys -from common import GET, OscTestCase +from common import OscTestCase FIXTURES_DIR = os.path.join(os.getcwd(), 'addfile_fixtures') diff --git a/tests/test_deletefiles.py b/tests/test_deletefiles.py index ebc579b3..d960637e 100644 --- a/tests/test_deletefiles.py +++ b/tests/test_deletefiles.py @@ -1,8 +1,7 @@ import osc.core import osc.oscerr import os -import sys -from common import GET, OscTestCase +from common import OscTestCase FIXTURES_DIR = os.path.join(os.getcwd(), 'deletefile_fixtures') diff --git a/tests/test_difffiles.py b/tests/test_difffiles.py index b9f345cf..7de0f3d1 100644 --- a/tests/test_difffiles.py +++ b/tests/test_difffiles.py @@ -1,7 +1,6 @@ import osc.core import osc.oscerr import os -import sys from common import GET, OscTestCase FIXTURES_DIR = os.path.join(os.getcwd(), 'difffile_fixtures') diff --git a/tests/test_init_package.py b/tests/test_init_package.py index 36e01bb4..7347506f 100644 --- a/tests/test_init_package.py +++ b/tests/test_init_package.py @@ -1,8 +1,7 @@ import osc.core import osc.oscerr import os -import sys -from common import GET, OscTestCase +from common import OscTestCase FIXTURES_DIR = os.path.join(os.getcwd(), 'init_package_fixtures') def suite(): diff --git a/tests/test_init_project.py b/tests/test_init_project.py index 6e26390b..40b81dd5 100644 --- a/tests/test_init_project.py +++ b/tests/test_init_project.py @@ -1,8 +1,7 @@ import osc.core import osc.oscerr import os -import sys -from common import GET, OscTestCase +from common import OscTestCase FIXTURES_DIR = os.path.join(os.getcwd(), 'init_project_fixtures') def suite(): diff --git a/tests/test_revertfiles.py b/tests/test_revertfiles.py index d2e97708..5a8c4433 100644 --- a/tests/test_revertfiles.py +++ b/tests/test_revertfiles.py @@ -1,8 +1,7 @@ import osc.core import osc.oscerr import os -import sys -from common import GET, OscTestCase +from common import OscTestCase FIXTURES_DIR = os.path.join(os.getcwd(), 'revertfile_fixtures')