Skip to content

Commit

Permalink
fixed assertIn for python 2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
djhoese committed Jun 23, 2015
1 parent ac2a641 commit 815700f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mpop/tests/test_projectable.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def test_str(self):
# Not loaded data
p = projectable.Projectable()
p_str = str(p)
self.assertIn("not loaded", p_str)
self.assertTrue("not loaded" in p_str)

# Data that doesn't have a shape
p = projectable.Projectable(data=tuple())
Expand Down

0 comments on commit 815700f

Please sign in to comment.