Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszcz authored and paulcadman committed May 28, 2024
1 parent bd73a81 commit 1654022
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/Rust/Compilation/positive/out/test021.out
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9767820
80320
2 changes: 1 addition & 1 deletion tests/Rust/Compilation/positive/out/test034.out
Original file line number Diff line number Diff line change
@@ -1 +1 @@
50006027
501527
2 changes: 1 addition & 1 deletion tests/Rust/Compilation/positive/test021.juvix
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ power' : Nat → Nat → Nat → Nat

power : Nat → Nat → Nat := power' 1;

main : Nat := power 2 3 + power 3 7 + power 5 10;
main : Nat := power 2 3 + power 3 7 + power 5 7;
2 changes: 1 addition & 1 deletion tests/Rust/Compilation/positive/test034.juvix
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ mutrec : Nat :=
h (x : Nat) : Nat := if (x < 1) 1 (x * f (sub x 1));
in f 5 + f 10 + g 5 + h 5;

main : Nat := sum 10000 + mutrec;
main : Nat := sum 1000 + mutrec;

0 comments on commit 1654022

Please sign in to comment.