From 756032f4d61c549a1c81b8b5ad1047f54e1eec97 Mon Sep 17 00:00:00 2001 From: Edward Emanuel Jr Date: Tue, 9 May 2017 23:21:47 -0500 Subject: [PATCH] Update Bill to_ref test. --- tests/unit/objects/test_bill.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/unit/objects/test_bill.py b/tests/unit/objects/test_bill.py index d6a89cb..383dca0 100644 --- a/tests/unit/objects/test_bill.py +++ b/tests/unit/objects/test_bill.py @@ -4,7 +4,6 @@ from quickbooks.objects.bill import Bill - class BillTests(unittest.TestCase): def test_unicode(self): bill = Bill() @@ -31,7 +30,7 @@ def test_valid_object_name(self): def test_to_ref(self): bill = Bill() - bill.DisplayName = "test" + bill.DocNumber = "test" bill.Id = 100 ref = bill.to_ref()