Skip to content

Commit

Permalink
Merge pull request #405 from Ecwid/ECWID-138355
Browse files Browse the repository at this point in the history
ECWID-138355 fix declaredValue type
  • Loading branch information
zont163 authored May 17, 2024
2 parents e6bd894 + d982d44 commit 5ab52a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ data class CalculateOrderDetailsResult(
val width: Double? = null,
val length: Double? = null,
val weight: Double? = null,
val declaredValue: Int? = null
val declaredValue: Double? = null
)

data class DiscountInfo(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ class CustomersTest : BaseEntityTest() {
}

@Test
@Disabled("Will be fixed in ECWID-75364")
fun testSearchFields() {
// Creating new customer group
val customerGroupCreateRequest = CustomerGroupCreateRequest(
Expand Down

0 comments on commit 5ab52a5

Please sign in to comment.