summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_bsddb3.py
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2009-03-31 18:32:17 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2009-03-31 18:32:17 (GMT)
commit597ebab74466593dc05a35faad0f5c316900153b (patch)
treeaab4f8b1ee66ddd3fb4ad4a841509eab43b5ad1f /Lib/test/test_bsddb3.py
parent9e0b363629d62259965a4bc2806370b152d8baac (diff)
downloadcpython-597ebab74466593dc05a35faad0f5c316900153b.zip
cpython-597ebab74466593dc05a35faad0f5c316900153b.tar.gz
cpython-597ebab74466593dc05a35faad0f5c316900153b.tar.bz2
A few more test skips via import_module, and change import_module to
return the error message produced by importlib, so that if an import in the package whose import is being wrapped is what failed the skip message will contain the name of that module instead of the name of the wrapped module. Also fixed formatting of some previous comments.
Diffstat (limited to 'Lib/test/test_bsddb3.py')
-rw-r--r--Lib/test/test_bsddb3.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_bsddb3.py b/Lib/test/test_bsddb3.py
index b290a6e..095c632 100644
--- a/Lib/test/test_bsddb3.py
+++ b/Lib/test/test_bsddb3.py
@@ -10,8 +10,8 @@ import unittest
from test.test_support import (requires, verbose, run_unittest, unlink, rmtree,
import_module)
-#Skip test if bsddb cannot import _bsddb.
-import_module('bsddb')
+# Skip test if _bsddb module was not built.
+import_module('_bsddb')
# When running as a script instead of within the regrtest framework, skip the
# requires test, since it's obvious we want to run them.