binman: Correct some import statements

Some of these were not converted when binman moved to use absolute paths.
Fix them.

Also drop the import of 'test' which is a directory, not a module.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass 2020-08-05 13:27:47 -06:00
parent 87d43329ef
commit 07237988dc
4 changed files with 4 additions and 5 deletions

View file

@ -6,7 +6,7 @@
import unittest
from image import Image
from binman.image import Image
from patman.test_util import capture_sys_output
class TestImage(unittest.TestCase):