Merge "Use assertIsNone(...) instead of assertIs(None, ...)."

This commit is contained in:
Jenkins 2016-12-13 02:37:31 +00:00 committed by Gerrit Code Review
commit f8c2dbd024

View File

@ -41,4 +41,4 @@ class TestContextManager(test_case.DslTestCase):
def test_create_object_context(self):
obj = 'obj'
self.assertIs(None, self.context_manager.create_object_context(obj))
self.assertIsNone(self.context_manager.create_object_context(obj))