diff options
| author | Arnaud Bailly <arnaud.bailly@iohk.io> | 2024-09-23 15:35:01 +0200 |
|---|---|---|
| committer | Arnaud Bailly <arnaud.bailly@iohk.io> | 2024-09-23 15:35:01 +0200 |
| commit | 098968d1a8f39ab5eb670b7f5370817343a0f88f (patch) | |
| tree | ab79f32ad295328ae819c4d953c8ae628c4dacb9 /rust/tests/interpret_test.rs | |
| parent | 3035c35f3de47a132d2d760c041a723236ced91c (diff) | |
| download | lambda-nantes-098968d1a8f39ab5eb670b7f5370817343a0f88f.tar.gz | |
Can parse and evaluate boolean atoms
Diffstat (limited to 'rust/tests/interpret_test.rs')
| -rw-r--r-- | rust/tests/interpret_test.rs | 2 |
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); } |
