diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-08-04 15:40:04 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-08-04 15:40:04 -0500 |
commit | 51d7e0e876c9b2603c2158579804d17af037ed0f (patch) | |
tree | 0a30d66bb7999bde5a6f78f72c26907b0d4f534e /tests/tests.py | |
parent | 1169805e54fe4f952f6fa1d904885dcba9dda5d6 (diff) |
fix a test that used Label
Label had changed since the test was first written.
Diffstat (limited to 'tests/tests.py')
-rw-r--r-- | tests/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tests.py b/tests/tests.py index 90f40f4..69780f5 100644 --- a/tests/tests.py +++ b/tests/tests.py @@ -568,7 +568,7 @@ class TestLabel(unittest.TestCase): line_number = 2 address = 0xf0c0 label_name = "poop" - l = Label(name=label_name, address=address, line_number=line_number) + l = Label(name=label_name, address=address, line_number=line_number, object={}) self.failUnless(hasattr(l, "name")) self.failUnless(hasattr(l, "address")) self.failUnless(hasattr(l, "line_number")) |