Skip to content

Commit

Permalink
fixed import and remove pdb
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel Riolo committed Apr 15, 2015
1 parent 5d09f05 commit 650062b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/martian/testing.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class FakeModuleObject(object):
class FakeModule(object):
__metaclass__ = FakeModuleMetaclass
else:
from matian.testing_compat import FakeModule
from matian.testing_compat import FakeModuleObject
from martian.testing_compat import FakeModule
from martian.testing_compat import FakeModuleObject


3 changes: 1 addition & 2 deletions src/martian/testing_compat.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import pdb;pdb.set_trace()
""" Just python classes that only work in
python3. In python < 3 you will get a syntax error.
"""
Expand Down Expand Up @@ -29,4 +28,4 @@ class FakeModuleObject(object, metaclass = FakeModuleObjectMetaclass):


class FakeModule(object, metaclass = FakeModuleMetaclass):
pass
pass

0 comments on commit 650062b

Please sign in to comment.