Skip to content

Commit

Permalink
Merge branch '869-2d-histogram' of github.com:Safe-DS/Library into 86…
Browse files Browse the repository at this point in the history
…9-2d-histogram
  • Loading branch information
SamanHushi committed Jul 12, 2024
2 parents 8e5ec02 + 58efd39 commit e6407d1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,6 @@ def test_should_raise_if_value_not_in_range_y() -> None:


def test_should_raise_if_column_is_not_numeric() -> None:
table = Table({"col1": "a", "col2": "b"})
table = Table({"col1": ["a"], "col2": ["b"]})
with pytest.raises(ColumnTypeError):
table.plot.histogram_2d("col1", "col2")

0 comments on commit e6407d1

Please sign in to comment.