Skip to content

Commit

Permalink
add issue # to xfail
Browse files Browse the repository at this point in the history
  • Loading branch information
ajberdy committed Nov 30, 2023
1 parent b2bcd7e commit 679bade
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit_tests/braket/experimental/autoqasm/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def recursive_h(q: int):
def recursive_h_wrapper():
q = 5

@aq.main(num_qubits=6)
@aq.main(num_qubits=q + 1)
def recursive_h_wrapper():
recursive_h(q)

Expand Down Expand Up @@ -972,7 +972,7 @@ def bell() -> None:
bell()


@pytest.mark.xfail(reason="will fix by adding a checker to the transpiler")
@pytest.mark.xfail(reason="(#809) will fix by adding a checker to the transpiler")
def test_main_from_main():
"""Can't call main from main!"""

Expand Down

0 comments on commit 679bade

Please sign in to comment.