Skip to content

Commit

Permalink
Switch order for api and breakpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
PokhodenkoSA committed Dec 3, 2021
1 parent b434ecd commit 88f7caa
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions numba_dppy/tests/test_debug_dppy_numba.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,15 +161,15 @@ def test_break_conditional(app):

@skip_no_numba055
@pytest.mark.parametrize(
"api, breakpoint",
"breakpoint, api",
[
("numba", "side-by-side.py:25"),
("numba-dppy-kernel", "side-by-side.py:25"),
("numba", "common_loop_body_242"),
("numba-dppy-kernel", "common_loop_body"),
("side-by-side.py:25", "numba"),
("side-by-side.py:25", "numba-dppy-kernel"),
("common_loop_body_242", "numba"),
("common_loop_body", "numba-dppy-kernel"),
],
)
def test_breakpoint_with_condition_by_function_argument(app, api, breakpoint):
def test_breakpoint_with_condition_by_function_argument(app, breakpoint, api):
"""Function breakpoints and argument initializing
Test that it is possible to set conditional breakpoint at the beginning
Expand Down

0 comments on commit 88f7caa

Please sign in to comment.