Skip to content

Commit 2442614

Browse files
authored
Merge pull request #210 from Ecwid/fix_categories_test
Fix equality check to comply with changes in server's response
2 parents 1377804 + 8e3d974 commit 2442614

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

src/test/kotlin/com/ecwid/apiclient/v3/entity/CategoriesTest.kt

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,17 @@ private fun generateTestCategory(
537537
),
538538
enabled = enabled,
539539
productIds = productIds,
540-
isSampleCategory = false
540+
isSampleCategory = false,
541+
seoTitle = "",
542+
seoTitleTranslated = LocalizedValueMap(
543+
"ru" to "",
544+
"en" to ""
545+
),
546+
seoDescription = "",
547+
seoDescriptionTranslated = LocalizedValueMap(
548+
"ru" to "",
549+
"en" to ""
550+
)
541551
)
542552
}
543553

0 commit comments

Comments
 (0)