Skip to content

Commit f0592e3

Browse files
committed
Fix DtoContractUnitTest unit test
1 parent f255f4e commit f0592e3

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import com.ecwid.apiclient.v3.rule.NullablePropertyRule
55
import com.ecwid.apiclient.v3.rule.NullablePropertyRule.AllowNullable
66

77
val productsSearchRequestNullablePropertyRules: List<NullablePropertyRule<*, *>> = listOf(
8-
AllowNullable(ProductsSearchRequest.ByFilters::attributes),
8+
AllowNullable(ProductsSearchRequest.ByFilters::attributes),
99
AllowNullable(ProductsSearchRequest.ByFilters::baseUrl),
1010
AllowNullable(ProductsSearchRequest.ByFilters::categories),
1111
AllowNullable(ProductsSearchRequest.ByFilters::cleanUrls),
@@ -30,5 +30,8 @@ val productsSearchRequestNullablePropertyRules: List<NullablePropertyRule<*, *>>
3030
AllowNullable(ProductsSearchRequest.ByFilters::discountsAllowed),
3131
AllowNullable(ProductsSearchRequest.ByFilters::isCustomerSetPrice),
3232
AllowNullable(ProductsSearchRequest.ByFilters::visibleInStorefront),
33+
AllowNullable(ProductsSearchRequest.ByIds::baseUrl),
34+
AllowNullable(ProductsSearchRequest.ByIds::cleanUrls),
3335
AllowNullable(ProductsSearchRequest.ByIds::sortBy),
36+
AllowNullable(ProductsSearchRequest.ByIds::lang),
3437
)

0 commit comments

Comments
 (0)