Skip to content

Commit

Permalink
reenable ConfluentAvroRegistryKafkaRecordDeserializationSchemaTest
Browse files Browse the repository at this point in the history
  • Loading branch information
nextdude committed Apr 23, 2023
1 parent 2552110 commit 6600e5c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Expand Up @@ -15,7 +15,7 @@ class ConfluentAvroRegistryKafkaRecordDeserializationSchemaTest
extends SerdeTestFixtures {

// ignore until set up testcontainers schema registry
ignore("deserialize works for bwrapper") {
property("deserialize works for bwrapper") {
val serde = getDeserializerFor[BWrapper, BRecord]
val collected = mutable.ArrayBuffer.empty[BWrapper]
val collector = new Collector[BWrapper] {
Expand All @@ -29,7 +29,7 @@ class ConfluentAvroRegistryKafkaRecordDeserializationSchemaTest
collected.head shouldEqual bWrapper
}

ignore("deserialize works for awrapper") {
property("deserialize works for awrapper") {
val serde = getDeserializerFor[AWrapper, ARecord]
val collected = mutable.ArrayBuffer.empty[AWrapper]
val collector = new Collector[AWrapper] {
Expand Down
Expand Up @@ -135,7 +135,8 @@ trait SerdeTestFixtures extends PropSpec {
A,
MyAvroADT
](
kafkaSourceConfig
kafkaSourceConfig,
schemaRegistryClientOpt = Some(schemaRegistryClient)
)
ds.open(null)
ds
Expand Down

0 comments on commit 6600e5c

Please sign in to comment.