summaryrefslogtreecommitdiff
path: root/rust/tests
diff options
context:
space:
mode:
authorArnaud Bailly <arnaud.bailly@iohk.io>2024-09-23 15:35:01 +0200
committerArnaud Bailly <arnaud.bailly@iohk.io>2024-09-23 15:35:01 +0200
commit098968d1a8f39ab5eb670b7f5370817343a0f88f (patch)
treeab79f32ad295328ae819c4d953c8ae628c4dacb9 /rust/tests
parent3035c35f3de47a132d2d760c041a723236ced91c (diff)
downloadlambda-nantes-098968d1a8f39ab5eb670b7f5370817343a0f88f.tar.gz
Can parse and evaluate boolean atoms
Diffstat (limited to 'rust/tests')
-rw-r--r--rust/tests/interpret_test.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/tests/interpret_test.rs b/rust/tests/interpret_test.rs
index f0b5201..5c3108a 100644
--- a/rust/tests/interpret_test.rs
+++ b/rust/tests/interpret_test.rs
@@ -3,5 +3,5 @@ use lambda::run;
#[test]
fn interpreter_can_read_and_interpret_file() {
let result = run("sample/test.txt");
- assert_eq!("1", result);
+ assert_eq!("12", result);
}