Skip to content
This repository has been archived by the owner on Aug 29, 2020. It is now read-only.

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
coldfix committed May 1, 2014
1 parent d68d7d7 commit 34b53c7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "pypy"
install:
Expand Down
2 changes: 1 addition & 1 deletion test.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class TestUtils(unittest.TestCase):

def test_none_checked(self):
tostr = madseq.none_checked(str)
self.assertIs(tostr(None), None)
self.assertEqual(tostr(None), None)
self.assertEqual(tostr(1), '1')

def test_stri(self):
Expand Down

0 comments on commit 34b53c7

Please sign in to comment.