Lines Matching refs:actual
51 actual = str(dt)
53 assert actual == expected, f'unexpected round-trip on {dts}'
466 actual = dt.label2prop[label].name
467 assert actual == expected, f"label '{label}' mapped to wrong property"
1563 actual = dt.root.props[prop].type
1564 assert actual == expected, f'{prop} has wrong type'
1669 actual = dt.root.props[prop].to_num(signed)
1670 assert actual == expected, \
1707 actual = dt.root.props[prop].to_nums(signed)
1708 assert actual == expected, \
1737 actual = dt.root.props[prop].to_bytes()
1738 assert actual == expected, f"'{prop}' gives the wrong bytes"
1760 actual = dt.root.props[prop].to_string()
1761 assert actual == expected, f"'{prop}' to_string gives the wrong string"
1787 actual = dt.root.props[prop].to_strings()
1788 assert actual == expected, f"'{prop}' to_strings gives the wrong value"
1811 actual = dt.root.props[prop].to_node().path
1812 assert actual == path, f"'{prop}' points at wrong path"
1832 actual = [node.path for node in dt.root.props[prop].to_nodes()]
1833 assert actual == paths, f"'{prop} gives wrong node paths"
1857 actual = dt.root.props[prop].to_path().path
1858 assert actual == path, f"'{prop} gives the wrong path"
1879 actual = fn(dt.root.props[prop].value, length, signed)
1880 assert actual == expected, \