File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed
src/test/scala/org/apache/flinkx/api Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -12,3 +12,6 @@ cd88dbd39d341e4d83dbaed57b1fe497159ba0be
12
12
13
13
# Scala Steward: Reformat with scalafmt 3.8.0
14
14
ac01058463c34eb216d3d3c0500dfce038fc4cff
15
+
16
+ # Scala Steward: Reformat with scalafmt 3.8.1
17
+ fade5fe3272078547e5ca2a7ef80a085a8d24b24
Original file line number Diff line number Diff line change 1
1
style = defaultWithAlign
2
2
maxColumn = 120
3
- version = 3.8 .0
3
+ version = 3.8 .1
4
4
assumeStandardLibraryStripMargin = true
5
5
align.stripMargin = true
6
6
runner.dialect = scala3
Original file line number Diff line number Diff line change @@ -71,9 +71,9 @@ class SerializerSnapshotTest extends AnyFlatSpec with Matchers {
71
71
72
72
it should " be compatible after snapshot deserialization in different classloader" in {
73
73
val ser = deriveTypeInformation[SimpleClass1 ].createSerializer(null )
74
- val cl = newClassLoader(classOf [SimpleClass1 ])
74
+ val cl = newClassLoader(classOf [SimpleClass1 ])
75
75
try {
76
- val restored = roundtripSerializer(ser, cl)
76
+ val restored = roundtripSerializer(ser, cl)
77
77
val compatibility = restored.snapshotConfiguration().resolveSchemaCompatibility(ser)
78
78
compatibility shouldBe Symbol (" compatibleAsIs" )
79
79
} finally {
@@ -82,7 +82,7 @@ class SerializerSnapshotTest extends AnyFlatSpec with Matchers {
82
82
}
83
83
84
84
def roundtripSerializer [T ](ser : TypeSerializer [T ], cl : ClassLoader = getClass.getClassLoader): TypeSerializer [T ] = {
85
- val snap = ser.snapshotConfiguration()
85
+ val snap = ser.snapshotConfiguration()
86
86
val buffer = new ByteArrayOutputStream ()
87
87
val output = new DataOutputViewStreamWrapper (buffer)
88
88
snap.writeSnapshot(output)
You can’t perform that action at this time.
0 commit comments