Skip to content

Commit 2c79fbf

Browse files
committed
Fix exploratory tests.
1 parent 502291e commit 2c79fbf

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

test/Exploratory_Benchmarks/src/Table/Column_Bi_Map.enso

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import project.Table.Helpers
99

1010
polyglot java import org.enso.exploratory_benchmark_helpers.MapHelpers
1111
polyglot java import org.enso.table.data.column.builder.Builder
12-
polyglot java import org.enso.table.data.column.storage.type.IntegerType;
13-
polyglot java import org.enso.table.data.column.storage.type.TextType;
12+
polyglot java import org.enso.table.data.column.storage.type.IntegerType
13+
polyglot java import org.enso.table.data.column.storage.type.TextType
1414

1515
# Adding two String columns
1616
type Boxed_Bi_Map_Test

test/Exploratory_Benchmarks/src/Table/Column_Map.enso

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import project.Table.Helpers
99

1010
polyglot java import org.enso.exploratory_benchmark_helpers.MapHelpers
1111
polyglot java import org.enso.table.data.column.builder.Builder
12-
polyglot java import org.enso.table.data.column.storage.type.IntegerType;
12+
polyglot java import org.enso.table.data.column.storage.type.IntegerType
1313

1414
## This tests an operation on a boxed value (e.g. ends_with on a String).
1515
It is the basic benchmark for comparing the performance between the vectorized Java op and approaches relying on Enso.

test/Exploratory_Benchmarks/src/Table/Enso_Callback.enso

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import project.Table.Helpers
1111

1212
polyglot java import org.enso.exploratory_benchmark_helpers.MapHelpers
1313
polyglot java import org.enso.table.data.column.builder.Builder
14-
polyglot java import org.enso.table.data.column.storage.type.IntegerType;
15-
polyglot java import org.enso.table.data.column.storage.type.TextType;
14+
polyglot java import org.enso.table.data.column.storage.type.IntegerType
15+
polyglot java import org.enso.table.data.column.storage.type.TextType
1616
polyglot java import org.enso.table.data.table.Column as Java_Column
1717

1818
## This tests an operation that executes an Enso function on each element of a column.

0 commit comments

Comments
 (0)