Skip to content

Commit

Permalink
linter fixes #3
Browse files Browse the repository at this point in the history
  • Loading branch information
grefrathc committed Jun 28, 2024
1 parent 440a89f commit bf990a5
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions tests/safeds/data/tabular/containers/_table/test_join.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import pytest # noqa: I001
import pytest
from safeds.data.tabular.containers import Table


@pytest.mark.parametrize(
("table_left", "table_right", "left_names", "right_names", "mode", "table_expected"),
[
Expand Down Expand Up @@ -46,5 +47,11 @@
),
],
)
def test_join(table_left: Table, table_right: Table, left_names: str | list[str], right_names: str | list[str], mode: str, table_expected: Table)-> None:
assert table_left.join(table_right, left_names, right_names, mode=mode) == table_expected
def test_join(
table_left: Table,
table_right: Table,
left_names: list[str],
right_names: list[str],
mode: str,
table_expected: Table,
) -> None: assert table_left.join(table_right, left_names, right_names, mode=mode) == table_expected

0 comments on commit bf990a5

Please sign in to comment.