summaryrefslogtreecommitdiff
path: root/test/ex/test_examples.py
diff options
context:
space:
mode:
authorMichael Trier <mtrier@gmail.com>2009-07-28 01:20:52 +0000
committerMichael Trier <mtrier@gmail.com>2009-07-28 01:20:52 +0000
commit6a67cb17c3c3298b1561e77c86358d3960d33259 (patch)
treee61395b26ed956c116c9eee8343f8494a5e15fe6 /test/ex/test_examples.py
parent34aaabf7ea18af8e8a7721238b5bba00e3532c4c (diff)
downloadsqlalchemy-6a67cb17c3c3298b1561e77c86358d3960d33259.tar.gz
Corrected examples tests. I was running from ./test instead of root.
Diffstat (limited to 'test/ex/test_examples.py')
-rw-r--r--test/ex/test_examples.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ex/test_examples.py b/test/ex/test_examples.py
index c31b21e76..411c44a0b 100644
--- a/test/ex/test_examples.py
+++ b/test/ex/test_examples.py
@@ -32,7 +32,7 @@ def filename_to_module_name(fn):
return re.sub('\.py$', '', fn.replace(os.sep, '.'))
def find_modules(*args):
- for fn in find_py_files(args or ('../examples',)):
+ for fn in find_py_files(args or ('./examples',)):
yield filename_to_module_name(fn)
def check_import(module):