Skip to content

Commit

Permalink
fix: issues after merging
Browse files Browse the repository at this point in the history
  • Loading branch information
lars-reimann committed Nov 16, 2022
1 parent dbede58 commit de082be
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Runtime/safe-ds/tests/data/test_table.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import pytest
from safe_ds.data._table import Table
from safe_ds.data import Table


def test_read_csv_valid():
table = Table.from_csv("tests/resources/test_table_read_csv.csv")
assert table.data["A"][0] == 1 and table.data["B"][0] == 2
assert table._data["A"][0] == 1 and table._data["B"][0] == 2


def test_read_csv_invalid():
Expand All @@ -14,7 +14,7 @@ def test_read_csv_invalid():

def test_read_json_valid():
table = Table.from_json("tests/resources/test_table_read_json.json")
assert table.data["A"][0] == 1 and table.data["B"][0] == 2
assert table._data["A"][0] == 1 and table._data["B"][0] == 2


def test_read_json_invalid():
Expand Down

0 comments on commit de082be

Please sign in to comment.