Skip to content

Commit

Permalink
fixup test
Browse files Browse the repository at this point in the history
  • Loading branch information
laurencap committed Nov 8, 2023
1 parent 9dc2d9a commit 5d89dce
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions test/unit_tests/braket/experimental/autoqasm/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,9 @@ def do_h(int[32] q) {
}
def recursive_h(int[32] q) {
do_h(q);
if (q > 0) {
bool __bool_0__;
__bool_0__ = q > 0;
if (__bool_0__) {
recursive_h(q - 1);
}
}
Expand All @@ -155,7 +157,9 @@ def do_h(int[32] q) {
}
def recursive_h(int[32] q) {
do_h(q);
if (q > 0) {
bool __bool_0__;
__bool_0__ = q > 0;
if (__bool_0__) {
recursive_h(q - 1);
}
}
Expand Down

0 comments on commit 5d89dce

Please sign in to comment.