diff options
author | Simon Glass <sjg@chromium.org> | 2020-08-05 13:27:47 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2020-08-22 08:53:38 -0600 |
commit | 07237988dcf88366ce4182eceac698cf1e97afc5 (patch) | |
tree | 1f45ccc449a1da4e63b55142e5b162e1eac20300 /tools/binman/main.py | |
parent | 87d43329ef7698eab5b090a91228269c39643122 (diff) |
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>
Diffstat (limited to 'tools/binman/main.py')
-rwxr-xr-x | tools/binman/main.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/binman/main.py b/tools/binman/main.py index 3e463b0119b..8c1e478d54c 100755 --- a/tools/binman/main.py +++ b/tools/binman/main.py @@ -61,7 +61,6 @@ def RunTests(debug, verbosity, processes, test_preserve_dirs, args, toolpath): from binman import fdt_test from binman import ftest from binman import image_test - from binman import test import doctest result = unittest.TestResult() |