Skip to content

Commit 8a921c8

Browse files
committed
Fix minor format issue
1 parent d9bb1b6 commit 8a921c8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

vtl-spark/src/test/java/fr/insee/vtl/spark/processing.engine/analytic/AnalyticFirstTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@ public void testAnFirstPartitionOrderByDesc() throws ScriptException {
8484
// will also test dot espacing
8585
context.setAttribute("ds.ds2", ds2, ScriptContext.ENGINE_SCOPE);
8686

87-
engine.eval("res := first_value ( ds.ds2 over ( partition by Id_1, Id_2 order by Year desc) );");
87+
engine.eval(
88+
"res := first_value ( ds.ds2 over ( partition by Id_1, Id_2 order by Year desc) );");
8889
assertThat(engine.getContext().getAttribute("res")).isInstanceOf(Dataset.class);
8990

9091
/*

0 commit comments

Comments
 (0)