Merge "NFVi Test stops after one hour even if configured context duration is longer"
[yardstick.git] / yardstick / tests / unit / benchmark / core / test_task.py
index b3a5120..82a90b1 100644 (file)
@@ -66,7 +66,7 @@ class TaskTestCase(unittest.TestCase):
 
         mock_dispatcher.get = mock.MagicMock(return_value=[dispatcher1,
                                                            dispatcher2])
-        self.assertEqual(None, t._do_output(output_config, {}))
+        self.assertIsNone(t._do_output(output_config, {}))
 
     @mock.patch.object(task, 'Context')
     def test_parse_networks_from_nodes(self, mock_context):