From a4279112b3f3320f9b305051965a676df9dbce3e Mon Sep 17 00:00:00 2001 From: Kazuhiro MIYAHARA Date: Thu, 1 Sep 2016 21:24:52 +0900 Subject: [PATCH] Remove meaningless lines in reconciler unit test There are two lines in which lists are sorted in test_reconciler.py However, the values in the lists will be same, then the two lines are meaningless. This patch removes the two lines from test_reconciler.py Change-Id: I7d72a7a4e9a27d87cd78c96f79d1b340b2ad23de --- test/unit/container/test_reconciler.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/unit/container/test_reconciler.py b/test/unit/container/test_reconciler.py index 56ce3965ad..8f5db4fb03 100644 --- a/test/unit/container/test_reconciler.py +++ b/test/unit/container/test_reconciler.py @@ -619,7 +619,6 @@ class TestReconcilerUtils(unittest.TestCase): self.assertTrue(ret) self.assertEqual(ret, str(int(5948918.63946 // 3600 * 3600))) self.assertEqual(len(connect_args), 3) - connect_args.sort(key=lambda a: (a['ipaddr'], a['port'])) required_headers = ('x-content-type', 'x-etag') @@ -657,7 +656,6 @@ class TestReconcilerUtils(unittest.TestCase): self.assertTrue(ret) self.assertEqual(ret, str(int(5948918.63946 // 3600 * 3600))) self.assertEqual(len(connect_args), 3) - connect_args.sort(key=lambda a: (a['ipaddr'], a['port'])) required_headers = ('x-size', 'x-content-type')