Skip to content

Commit

Permalink
format test file
Browse files Browse the repository at this point in the history
  • Loading branch information
deko2369 committed Jun 15, 2024
1 parent 55c60de commit 60bc158
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -237,9 +237,11 @@ abstract class EmbulkPluginTestHelper
)
.build()

Iterator.continually(reader.read()).takeWhile(_ != null).map(
record => record.getSchema.getFields.map(f => record.get(f.name()))
).toSeq
Iterator
.continually(reader.read())
.takeWhile(_ != null)
.map(record => record.getSchema.getFields.map(f => record.get(f.name())))
.toSeq
}

def loadConfigSourceFromYamlString(yaml: String): ConfigSource =
Expand Down

0 comments on commit 60bc158

Please sign in to comment.