From 34b53c71ce97a0df8dfb2d0838e8704fe5dd4ce4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Gl=C3=A4=C3=9Fle?= Date: Fri, 2 May 2014 01:36:54 +0200 Subject: [PATCH] Fix tests --- .travis.yml | 1 - test.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) 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):