Skip to content

Commit

Permalink
table_from_frames: fix for non-orange dataframes
Browse files Browse the repository at this point in the history
  • Loading branch information
PrimozGodec committed Oct 19, 2021
1 parent a721906 commit 72c5b24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Orange/data/tests/test_pandas.py
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ def _get_orange_demo_datasets():
self.assertEqual(len(df.columns), len(table.domain.variables), assert_message)

def test_table_from_frames(self):
table = Table("brown-selected")
table = Table("brown-selected") # dataset with all X, Y and metas
table.ids = np.arange(100, len(table) + 100, 1, dtype=int)

x, y, m = table.to_pandas_dfs()
Expand Down

0 comments on commit 72c5b24

Please sign in to comment.