Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
aPere3 committed Mar 19, 2024
1 parent 47e9dfe commit 5bb37cf
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions frontends/concrete-python/tests/compilation/test_configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,38 +217,38 @@ def test_configuration_bad_fork(kwargs, expected_error, expected_message):
"""
%0:
%0 >= 3
main.%0 >= 3
%1:
%1 >= 7
main.%1 >= 7
%2:
%2 >= 2
main.%2 >= 2
%3:
%3 >= 5
main.%3 >= 5
%4:
%4 >= 8
%3 == %1
%1 == %4
main.%4 >= 8
main.%3 == main.%1
main.%1 == main.%4
""",
"""
%0 = 3
%1 = 8
%2 = 2
%3 = 8
%4 = 8
max = 8
main.%0 = 3
main.%1 = 8
main.%2 = 2
main.%3 = 8
main.%4 = 8
main.max = 8
"""
if USE_MULTI_PRECISION
else """
%0 = 8
%1 = 8
%2 = 8
%3 = 8
%4 = 8
max = 8
main.%0 = 8
main.%1 = 8
main.%2 = 8
main.%3 = 8
main.%4 = 8
main.max = 8
""",
),
Expand Down

0 comments on commit 5bb37cf

Please sign in to comment.