From 2e65b7e365e858aaba02b3037ffcf1ecf87b62cc Mon Sep 17 00:00:00 2001 From: Michel Davit Date: Thu, 14 Dec 2023 17:02:07 +0100 Subject: [PATCH] Fix integration tests --- .../scala/com/spotify/scio/smb/SortMergeBucketParityIT.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/src/test/scala/com/spotify/scio/smb/SortMergeBucketParityIT.scala b/integration/src/test/scala/com/spotify/scio/smb/SortMergeBucketParityIT.scala index 8d3c1198c9..ed7373b60e 100644 --- a/integration/src/test/scala/com/spotify/scio/smb/SortMergeBucketParityIT.scala +++ b/integration/src/test/scala/com/spotify/scio/smb/SortMergeBucketParityIT.scala @@ -221,7 +221,7 @@ class SortMergeBucketParityIT extends AnyFlatSpec with Matchers { val outputPath = new File(tempFolder, s"source$n") - sc.parallelize(data) + sc.parallelize[GenericRecord](data) .saveAsSortedBucket( AvroSortedBucketIO .write(classOf[Integer], "key", schema)