Skip to content

Commit

Permalink
ECWID-135200 Recurring subscription orders are created without Tax ID…
Browse files Browse the repository at this point in the history
… although it's presented in the initial order - added clarification
  • Loading branch information
renat-ayzyatullen committed May 27, 2024
1 parent afcd1eb commit 6148e9f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/test/kotlin/com/ecwid/apiclient/v3/entity/CartsTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -697,6 +697,6 @@ private fun UpdatedOrder.cleanupForComparison(order: UpdatedOrder): UpdatedOrder
}
)
},
customerFiscalCode = null,
customerFiscalCode = null, // ApiOrder has empty string instead of null
)
}
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ private fun UpdatedOrder.cleanupForComparison(order: UpdatedOrder): UpdatedOrder
val requestItem = order.items?.get(index)
item.cleanupForComparison(requestItem)
},
customerFiscalCode = null,
customerFiscalCode = null, // ApiOrder has empty string instead of null
)
}

Expand Down

0 comments on commit 6148e9f

Please sign in to comment.