Browse Source

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 7 years ago committed by David Gibson
parent
commit
481246a0c1
  1. 5
      tests/pylibfdt_tests.py

5
tests/pylibfdt_tests.py

@ -336,10 +336,9 @@ class PyLibfdtTests(unittest.TestCase): @@ -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"""

Loading…
Cancel
Save