pylibfdt: Avoid accessing the internal _fdt member in tests

We can use the accessor now, so do so.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
main
Simon Glass 2018-06-06 15:37:07 -06:00 committed by David Gibson
parent 9aafa33d99
commit 481246a0c1
1 changed files with 2 additions and 3 deletions

View File

@ -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"""