Skip to content

Commit

Permalink
Remove postfix notation in KafkaDataConsumerSuite
Browse files Browse the repository at this point in the history
  • Loading branch information
dongjinleekr committed Aug 18, 2019
1 parent 79c3b58 commit e413957
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -105,7 +105,7 @@ class KafkaDataConsumerSuite extends SharedSQLContext with PrivateMethodTester {
val headers = record.headers().toArray.map(header => (header.key(), header.value())).toSeq
(value, headers)
}
data zip rcvd foreach { case (expected, actual) =>
data.zip(rcvd).foreach { case (expected, actual) =>
// value
assert(expected._1 === actual._1)
// headers
Expand Down

0 comments on commit e413957

Please sign in to comment.