Skip to content

Commit

Permalink
Fix parameter type
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardt committed Jan 29, 2024
1 parent a6f9342 commit e90d6a2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_module_linking.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def _run_file_check(basename):

@_wrap_with_clear_link_info
# @pytest.mark.parametrize("output", ("coreir", "mlir"))
@pytest.mark.parametrize("output", ("mlir"))
@pytest.mark.parametrize("output", ("mlir", ))
def test_only_default(output):
m.link_default_module(_BinOpInterface, _OrImpl)
assert m.linking.has_default_linked_module(_BinOpInterface)
Expand All @@ -87,7 +87,7 @@ def test_only_default(output):


@_wrap_with_clear_link_info
@pytest.mark.parametrize("output", ("mlir"))
@pytest.mark.parametrize("output", ("mlir", ))
def test_linked_modules_no_default(output):
m.link_module(_BinOpInterface, "OR", _OrImpl)
m.link_module(_BinOpInterface, "AND", _AndImpl)
Expand All @@ -112,7 +112,7 @@ def test_linked_modules_no_default(output):


@_wrap_with_clear_link_info
@pytest.mark.parametrize("output", ("mlir"))
@pytest.mark.parametrize("output", ("mlir", ))
def test_linked_modules_with_default(output):
m.link_module(_BinOpInterface, "OR", _OrImpl)
m.link_module(_BinOpInterface, "AND", _AndImpl)
Expand Down

0 comments on commit e90d6a2

Please sign in to comment.