summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2015-02-18 14:07:23 +0100
committerGuido Günther <agx@sigxcpu.org>2015-02-20 11:30:49 +0100
commitf1f37b96426a4922b047536595c7fa30713f394a (patch)
treef4aad6cffaef782794dbcbbc63ed46d0f29526c4 /tests
parent600d5d7d82b90dbf468dd1f8417bba86464e3135 (diff)
Remove unused import
Gbp-Dch: Ignore
Diffstat (limited to 'tests')
-rw-r--r--tests/02_test_upstream_source_tar_unpack.py2
-rw-r--r--tests/component/__init__.py3
2 files changed, 0 insertions, 5 deletions
diff --git a/tests/02_test_upstream_source_tar_unpack.py b/tests/02_test_upstream_source_tar_unpack.py
index 97bf76b..163b26a 100644
--- a/tests/02_test_upstream_source_tar_unpack.py
+++ b/tests/02_test_upstream_source_tar_unpack.py
@@ -5,9 +5,7 @@
from . import context
import os
-import shutil
import tarfile
-import tempfile
import unittest
import gbp.pkg
diff --git a/tests/component/__init__.py b/tests/component/__init__.py
index 8bd3f7f..b0376c1 100644
--- a/tests/component/__init__.py
+++ b/tests/component/__init__.py
@@ -21,15 +21,12 @@ Module for testing individual command line tools of the git-buildpackage suite
"""
import os
-import re
import shutil
import tempfile
-from StringIO import StringIO
from nose import SkipTest
from nose.tools import eq_, ok_ # pylint: disable=E0611
from .. testutils import GbpLogTester
-import gbp.log
from gbp.git import GitRepository, GitRepositoryError
class ComponentTestGitRepository(GitRepository):