summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_profilehooks.py
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2010-03-19 19:00:44 (GMT)
committerFlorent Xicluna <florent.xicluna@gmail.com>2010-03-19 19:00:44 (GMT)
commit9b86b9a086425c9c3a132ccad4ea8875083300c2 (patch)
tree0c463be0d181d3120984b50388f502f137922682 /Lib/test/test_profilehooks.py
parentfb60f8002c3c9a6f496fb1d3cbb1a8b11d9ba793 (diff)
downloadcpython-9b86b9a086425c9c3a132ccad4ea8875083300c2.zip
cpython-9b86b9a086425c9c3a132ccad4ea8875083300c2.tar.gz
cpython-9b86b9a086425c9c3a132ccad4ea8875083300c2.tar.bz2
Merged revisions 79100 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r79100 | florent.xicluna | 2010-03-19 19:34:55 +0100 (ven, 19 mar 2010) | 2 lines Various tests cleanup: check_warnings/check_py3k_warnings, unittest.assert* and setUp/tearDown. ........
Diffstat (limited to 'Lib/test/test_profilehooks.py')
-rw-r--r--Lib/test/test_profilehooks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_profilehooks.py b/Lib/test/test_profilehooks.py
index 296c997..54267a0 100644
--- a/Lib/test/test_profilehooks.py
+++ b/Lib/test/test_profilehooks.py
@@ -12,7 +12,7 @@ class TestGetProfile(unittest.TestCase):
sys.setprofile(None)
def test_empty(self):
- assert sys.getprofile() == None
+ assert sys.getprofile() is None
def test_setget(self):
def fn(*args):