Port to Python 3
This should make all tests pass on both Python 2 and Python 3. Unittest2 is required on Py 2.6 and Py 3. Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
This commit is contained in:
parent
3088df8e60
commit
ed22e07ef9
50 changed files with 203 additions and 208 deletions
|
|
@ -83,8 +83,8 @@ class TestInitPhase(PungiTestCase):
|
|||
phase = init.InitPhase(compose)
|
||||
phase.run()
|
||||
|
||||
self.assertEqual(write_global.mock_calls, [])
|
||||
self.assertEqual(write_prepopulate.mock_calls, [mock.call(compose)])
|
||||
self.assertItemsEqual(write_global.mock_calls, [])
|
||||
self.assertItemsEqual(write_prepopulate.mock_calls, [mock.call(compose)])
|
||||
self.assertItemsEqual(write_arch.mock_calls, [])
|
||||
self.assertItemsEqual(create_comps.mock_calls, [])
|
||||
self.assertItemsEqual(write_variant.mock_calls, [])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue