Merge "[Arm64][libvirt] Fix read bytes from json files"

This commit is contained in:
Zuul 2021-03-25 05:26:07 +00:00 committed by Gerrit Code Review
commit 4952f23bbc
2 changed files with 2 additions and 2 deletions

View File

@ -1970,4 +1970,4 @@ class LoadersTestCase(test.NoDBTestCase):
])
mock_glob.assert_called_once_with(
'/usr/share/qemu/firmware/*.json')
mock_open.assert_called_once_with('10_fake.json')
mock_open.assert_called_once_with('10_fake.json', 'rb')

View File

@ -108,7 +108,7 @@ def _get_loaders():
continue
for spec_path in sorted(glob.glob(f'{path}/*.json')):
with open(spec_path) as fh:
with open(spec_path, 'rb') as fh:
spec = jsonutils.load(fh)
_loaders.append(spec)