Skip to content

Commit 756032f

Browse files
committed
Update Bill to_ref test.
1 parent c1f9737 commit 756032f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/unit/objects/test_bill.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
from quickbooks.objects.bill import Bill
55

66

7-
87
class BillTests(unittest.TestCase):
98
def test_unicode(self):
109
bill = Bill()
@@ -31,7 +30,7 @@ def test_valid_object_name(self):
3130

3231
def test_to_ref(self):
3332
bill = Bill()
34-
bill.DisplayName = "test"
33+
bill.DocNumber = "test"
3534
bill.Id = 100
3635

3736
ref = bill.to_ref()

0 commit comments

Comments
 (0)