Py3: Port test/unit/test_ringcomposer.py

Change-Id: I6cfa6aa87b00f3edecdd2dd8b3e5ef66380e36ae
This commit is contained in:
Cyril Roelandt 2018-12-01 03:25:21 +01:00
parent 9017db4519
commit 6c8b4c87a5
2 changed files with 2 additions and 1 deletions

View File

@ -65,7 +65,7 @@ class TestCommands(unittest.TestCase):
for cmd in cmds:
try:
with open(self.composite_builder_file, 'wb') as fd:
fd.write('not json')
fd.write(b'not json')
exit_code, stdout, stderr = self._run_composer(cmd)
self.assertEqual(2, exit_code)
self.assertIn('An error occurred while loading the composite '

View File

@ -41,6 +41,7 @@ commands =
test/unit/cli/test_relinker.py \
test/unit/cli/test_ring_builder_analyzer.py \
test/unit/cli/test_ringbuilder.py \
test/unit/cli/test_ringcomposer.py \
test/unit/common/middleware/crypto \
test/unit/common/middleware/test_catch_errors.py \
test/unit/common/middleware/test_crossdomain.py \