Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszcz committed Aug 13, 2024
1 parent 3372638 commit ae7c1eb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions tests/Anoma/Compilation/positive/test058.juvix
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
-- ranges
module test058;

import Stdlib.Prelude open hiding {for};
import Stdlib.Data.Range open;
import Stdlib.Prelude open;

sum (x : Nat) : Nat :=
for (acc := 0) (n in 1 to x) {acc + n};
Expand Down
3 changes: 1 addition & 2 deletions tests/Casm/Compilation/positive/test058.juvix
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
-- ranges
module test058;

import Stdlib.Prelude open hiding {for};
import Stdlib.Data.Range open;
import Stdlib.Prelude open;

sum (x : Nat) : Nat :=
for (acc := 0) (n in 1 to x) {acc + n};
Expand Down
3 changes: 1 addition & 2 deletions tests/Rust/Compilation/positive/test058.juvix
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
-- ranges
module test058;

import Stdlib.Prelude open hiding {for};
import Stdlib.Data.Range open;
import Stdlib.Prelude open;

sum (x : Nat) : Nat :=
for (acc := 0) (n in 1 to x) {acc + n};
Expand Down

0 comments on commit ae7c1eb

Please sign in to comment.