summaryrefslogtreecommitdiff
path: root/tests/test_configmgr.py
diff options
context:
space:
mode:
authorRong Jinhui <jinhui.rong@samsung.com>2015-11-04 19:48:42 +0800
committerSoonKyu Park <sk7.park@samsung.com>2016-06-11 20:37:48 +0900
commit3dd92714b8f6a72dc8aab06d7d032c7486025505 (patch)
treebf7f43d26c142f697cbc407d426e164acd329c29 /tests/test_configmgr.py
parentf1a1f6b62291ea7ebe605e57d476551fc4c2e7fc (diff)
downloadmic-3dd92714b8f6a72dc8aab06d7d032c7486025505.tar.gz
mic-3dd92714b8f6a72dc8aab06d7d032c7486025505.tar.bz2
mic-3dd92714b8f6a72dc8aab06d7d032c7486025505.zip
Fix unit test cases for CentOS_6
Change-Id: Idf5d4c3fb493468272374760ca9d8a507036fc40 Signed-off-by: Rong Jinhui <jinhui.rong@samsung.com>
Diffstat (limited to 'tests/test_configmgr.py')
-rw-r--r--tests/test_configmgr.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_configmgr.py b/tests/test_configmgr.py
index a795046..2f15f10 100644
--- a/tests/test_configmgr.py
+++ b/tests/test_configmgr.py
@@ -68,7 +68,8 @@ class ConfigMgrTest(unittest.TestCase):
self.configmgr._ksconf = KSCONF
self.assertTrue(isinstance(self.configmgr.create['ks'], KickstartParser))
#self.assertEqual(self.configmgr.create['name'], 'test')
- self.assertDictEqual(repomd[0], self.configmgr.create['repomd'][0])
+ #self.assertDictEqual(repomd[0], self.configmgr.create['repomd'][0])
+ self.assertEqual(repomd[0], self.configmgr.create['repomd'][0])
self.assertEqual(self.configmgr.create['arch'], 'i686')
if __name__ == "__main__":