Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
tbennun committed Aug 28, 2023
1 parent 4becc9d commit 1e8254a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/codegen/control_flow_detection_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def tester(a: dace.float64[20]):
a[1] = 1
a[2] = 1

sdfg = tester.to_sdfg()
sdfg = tester.to_sdfg(simplify=True)
assert 'goto' not in sdfg.generate_code()[0].code


Expand All @@ -143,7 +143,7 @@ def tester(a: dace.float64[20]):
a[1] = 2
a[2] = 1

sdfg = tester.to_sdfg()
sdfg = tester.to_sdfg(simplify=True)
assert 'goto' not in sdfg.generate_code()[0].code


Expand Down

0 comments on commit 1e8254a

Please sign in to comment.