diff --git a/.travis.yml b/.travis.yml index 0161810..6c37e48 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,6 @@ language: python python: - "2.6" - "2.7" - - "3.2" - "3.3" - "pypy" install: diff --git a/test.py b/test.py index ec6b6e6..6be13d4 100644 --- a/test.py +++ b/test.py @@ -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):