From 481246a0c13a364081579c97fc4efbba5213cac1 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Wed, 6 Jun 2018 15:37:07 -0600 Subject: [PATCH] pylibfdt: Avoid accessing the internal _fdt member in tests We can use the accessor now, so do so. Signed-off-by: Simon Glass Reviewed-by: David Gibson Signed-off-by: David Gibson --- tests/pylibfdt_tests.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/pylibfdt_tests.py b/tests/pylibfdt_tests.py index 08c4f57..f195a34 100644 --- a/tests/pylibfdt_tests.py +++ b/tests/pylibfdt_tests.py @@ -336,10 +336,9 @@ class PyLibfdtTests(unittest.TestCase): def testIntegers(self): """Check that integers can be passed and returned""" - self.assertEquals(0, libfdt.fdt_get_phandle(self.fdt.as_bytearray(), 0)) + self.assertEquals(0, libfdt.fdt_get_phandle(self.fdt._fdt, 0)) node2 = self.fdt.path_offset('/subnode@2') - self.assertEquals( - 0x2000, libfdt.fdt_get_phandle(self.fdt.as_bytearray(), node2)) + self.assertEquals(0x2000, libfdt.fdt_get_phandle(self.fdt._fdt, node2)) def testGetPhandle(self): """Test for the get_phandle() method"""