summaryrefslogtreecommitdiffstats
path: root/tests/common.py
diff options
context:
space:
mode:
authorJohan Dahlin <johan@gnome.org>2008-07-26 08:46:07 +0000
committerJohan Dahlin <johan@src.gnome.org>2008-07-26 08:46:07 +0000
commit7079b546e06dd77b61cd1ba4692a077a85b9e033 (patch)
treeb505c4318cc8b5c7eed6251e0a008de42e0113e7 /tests/common.py
parentb94d79214498b07abc22e676897c8314cc386c7c (diff)
downloadpygobject-7079b546e06dd77b61cd1ba4692a077a85b9e033.tar.gz
pygobject-7079b546e06dd77b61cd1ba4692a077a85b9e033.tar.xz
pygobject-7079b546e06dd77b61cd1ba4692a077a85b9e033.zip
Run pyflakes on the testsuite, remove unused imports and reorganize
2008-07-26 Johan Dahlin <johan@gnome.org> * tests/common.py: * tests/test_conversion.py: * tests/test_enum.py: * tests/test_interface.py: * tests/test_option.py: * tests/test_source.py: * tests/test_subprocess.py: * tests/test_subtype.py: * tests/test_thread.py: * tests/test_unknown.py: Run pyflakes on the testsuite, remove unused imports and reorganize others. svn path=/trunk/; revision=859
Diffstat (limited to 'tests/common.py')
-rw-r--r--tests/common.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/common.py b/tests/common.py
index fe7940f..d41b9f2 100644
--- a/tests/common.py
+++ b/tests/common.py
@@ -42,11 +42,7 @@ def importModule(module, directory, name=None):
except ImportError, e:
raise SystemExit('%s could not be imported: %s' % (origName, e))
- if hasattr(obj, '__file__'):
- location = obj.__file__
- else:
- package = __import__(fromlist)
- location = os.path.join(package.__file__, name)
+ location = obj.__file__
current = os.getcwd()
expected = os.path.abspath(os.path.join(current, location))