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')