From d11d649eac8ee045f1ac011e4736919bd0e0c259 Mon Sep 17 00:00:00 2001 From: Eric Marnadi Date: Fri, 3 Jan 2025 14:31:18 -0800 Subject: [PATCH] spacing --- .../sql/streaming/TransformWithStateSuite.scala | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/sql/core/src/test/scala/org/apache/spark/sql/streaming/TransformWithStateSuite.scala b/sql/core/src/test/scala/org/apache/spark/sql/streaming/TransformWithStateSuite.scala index dc6bd6e8552bc..02f0d9ae41fef 100644 --- a/sql/core/src/test/scala/org/apache/spark/sql/streaming/TransformWithStateSuite.scala +++ b/sql/core/src/test/scala/org/apache/spark/sql/streaming/TransformWithStateSuite.scala @@ -55,17 +55,17 @@ case class ReorderedLongs( // Initial state with basic fields case class BasicState( -id: Int, -name: String + id: Int, + name: String ) // Evolved state with just primitive types case class EvolvedState( -id: Int, -name: String, -count: Long, // Should default to 0 -active: Boolean, // Should default to false -score: Double // Should default to 0.0 + id: Int, + name: String, + count: Long, // Should default to 0 + active: Boolean, // Should default to false + score: Double // Should default to 0.0 ) // Processor with initial schema