summaryrefslogtreecommitdiff
path: root/examples/test_bibparse.py
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@cepl.eu>2018-11-21 17:45:50 +0100
committerMatěj Cepl <mcepl@cepl.eu>2018-11-21 17:45:50 +0100
commit61077f3fa478a5329ddd4acb12212d1241de4b10 (patch)
tree264efd0f16ad7eb24c64d4081c766ab0cdfc90b9 /examples/test_bibparse.py
parente988ffeb676a959725df2b3b971ff0dbb998f573 (diff)
downloadpyparsing-git-61077f3fa478a5329ddd4acb12212d1241de4b10.tar.gz
Fix failing tests (both py2K and py3k)
Fixes #48
Diffstat (limited to 'examples/test_bibparse.py')
-rw-r--r--examples/test_bibparse.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/test_bibparse.py b/examples/test_bibparse.py
index 7440a66..78f5bb7 100644
--- a/examples/test_bibparse.py
+++ b/examples/test_bibparse.py
@@ -3,8 +3,8 @@
from os.path import join as pjoin, dirname
from pyparsing import ParseException
-from btpyparse import Macro
-import btpyparse as bp
+from .btpyparse import Macro
+from . import btpyparse as bp
from nose.tools import assert_true, assert_false, assert_equal, assert_raises