Skip to content

Commit

Permalink
fix a test
Browse files Browse the repository at this point in the history
  • Loading branch information
radeusgd committed Apr 27, 2023
1 parent 8655703 commit 2d398aa
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions test/Visualization_Tests/src/Table_Spec.enso
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ from Standard.Base import all

from Standard.Table import Table, Aggregate_Column, Value_Type

from Standard.Database import SQLite
from Standard.Database import Database
from Standard.Database import all
import Standard.Database.Data.Table.Table as Database_Table

import Standard.Visualization.Table.Visualization
Expand All @@ -24,7 +23,7 @@ type Foo

visualization_spec connection =
in_mem = Table.new [["A", ['a', 'a', 'a']], ["B", [2, 2, 3]], ["C", [3, 5, 6]]]
t = in_mem.create_database_table connection "T"
t = in_mem.create_database_table connection "T" primary_key=Nothing temporary=True

make_json header data all_rows ixes_header ixes =
p_header = ["header", header]
Expand Down

0 comments on commit 2d398aa

Please sign in to comment.