Skip to content

Commit 5b47cd2

Browse files
committed
ECWID-174089 - fix tests
1 parent 075bfbc commit 5b47cd2

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

src/test/kotlin/com/ecwid/apiclient/v3/rule/NonUpdatablePropertyRules.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ val nonUpdatablePropertyRules: List<NonUpdatablePropertyRule<*, *>> = listOf(
147147
Ignored(FetchedCoupon::updateDate),
148148

149149
ReadOnly(FetchedCustomer::id),
150+
ReadOnly(FetchedCustomer::externalReferenceId),
150151
Ignored(FetchedCustomer::registered),
151152
Ignored(FetchedCustomer::updated),
152153
Ignored(FetchedCustomer::customerGroupName),

src/test/kotlin/com/ecwid/apiclient/v3/rule/nullablepropertyrules/FetchedCustomerRules.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import com.ecwid.apiclient.v3.rule.NullablePropertyRule.AllowNullable
77
import com.ecwid.apiclient.v3.rule.NullablePropertyRule.IgnoreNullable
88

99
val fetchedCustomerNullablePropertyRules: List<NullablePropertyRule<*, *>> = listOf(
10+
AllowNullable(FetchedCustomer::externalReferenceId),
1011
IgnoreNullable(FetchedCustomer::acceptMarketing),
1112
IgnoreNullable(FetchedCustomer::billingPerson),
1213
IgnoreNullable(FetchedCustomer::customerGroupId),

0 commit comments

Comments
 (0)