Skip to content

Commit 7753f0b

Browse files
committed
Fix #57 -- Incorrect readme example
1 parent b9263b2 commit 7753f0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def invoice_document(request):
5454
li.agreement.gross.amount = Decimal("999.00")
5555
li.agreement.gross.basis_quantity = (Decimal("1.0000"), "C62") # C62 == pieces
5656
li.agreement.net.amount = Decimal("999.00")
57-
li.agreement.net.basis_quantity = (Decimal("999.00"), "EUR")
57+
li.agreement.net.basis_quantity = (Decimal("999.00"), "C62")
5858
li.delivery.billed_quantity = (Decimal("1.0000"), "C62") # C62 == pieces
5959
li.settlement.trade_tax.type_code = "VAT"
6060
li.settlement.trade_tax.category_code = "E"

0 commit comments

Comments
 (0)