Skip to content

Commit 897565c

Browse files
committed
Scala: Fix spotless errors
JAVA-5033
1 parent e4a7804 commit 897565c

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

driver-scala/src/test/scala/org/mongodb/scala/model/AggregatesSpec.scala

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,13 @@ class AggregatesSpec extends BaseSpec {
448448
),
449449
WindowOutputFields.sum("newField01", "$field01", Some(range(1, CURRENT))),
450450
WindowOutputFields.avg("newField02", "$field02", Some(range(UNBOUNDED, 1))),
451-
WindowOutputFields.percentile("newField02P", "$field02P", List(0.3, 0.9), QuantileMethod.approximate(), Some(range(UNBOUNDED, 1))),
451+
WindowOutputFields.percentile(
452+
"newField02P",
453+
"$field02P",
454+
List(0.3, 0.9),
455+
QuantileMethod.approximate(),
456+
Some(range(UNBOUNDED, 1))
457+
),
452458
WindowOutputFields.median("newField02M", "$field02M", QuantileMethod.approximate(), Some(range(UNBOUNDED, 1))),
453459
WindowOutputFields.stdDevSamp("newField03", "$field03", Some(window)),
454460
WindowOutputFields.stdDevPop("newField04", "$field04", Some(window)),

0 commit comments

Comments
 (0)