Merge "Replace assertEqual(None, *) with assertIsNone in tests"

This commit is contained in:
Jenkins 2017-03-22 02:37:23 +00:00 committed by Gerrit Code Review
commit f3d7a5f0b1
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ class TestRunner(base.TestCase):
def test_path_mapping_default(self): def test_path_mapping_default(self):
dr = doxrunner.Runner(argparse.Namespace(path_map=None, dr = doxrunner.Runner(argparse.Namespace(path_map=None,
user_map=None)) user_map=None))
self.assertEqual(None, dr.path_map) self.assertIsNone(dr.path_map)
def test_is_docker_installed(self): def test_is_docker_installed(self):
dr = doxrunner.Runner(argparse.Namespace( dr = doxrunner.Runner(argparse.Namespace(