diff options
author | Simon Glass <sjg@chromium.org> | 2020-12-22 19:30:20 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2021-01-05 12:24:40 -0700 |
commit | acfb5308f5e51fd1f4428618d704ad0de2358871 (patch) | |
tree | fde964d8bb55c77c6247f03f4c44e6b8f98a2e4a /test/py | |
parent | 2d6bf754ced8fc66cb945d026b66865da4fede85 (diff) | |
download | u-boot-acfb5308f5e51fd1f4428618d704ad0de2358871.tar.gz |
sandbox: Drop unnecessary test node
The spl-test4 node deliberately has an invalid compatible string. This
causes a warning from dtoc and the check it does is not really necessary.
Drop it, to avoid the warning and associated confusion.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test/py')
-rw-r--r-- | test/py/tests/test_ofplatdata.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/py/tests/test_ofplatdata.py b/test/py/tests/test_ofplatdata.py index 78837a3c00..d55338e37e 100644 --- a/test/py/tests/test_ofplatdata.py +++ b/test/py/tests/test_ofplatdata.py @@ -17,7 +17,6 @@ def test_spl_devicetree(u_boot_console): assert "u-boot,dm-spl" not in output assert "u-boot,dm-tpl" not in output - assert "spl-test4" in output assert "spl-test5" not in output assert "spl-test6" not in output assert "spl-test7" in output |