fix broken with_dotter_identity test

probably broke after evaluation style changes
This commit is contained in:
liquidex 2024-10-23 21:45:11 +02:00
parent 581a1778ca
commit b059ef4c35

View file

@ -290,5 +290,5 @@ fn with_dotter_identity() {
let code = r#"
withDotter \d -> d
"#;
assert_eq!(eval(code).unwrap(), Value::Ref(RefId::from_u32(0)))
assert_eq!(eval(code).unwrap(), Value::Ref(RefId::from_u32(2)))
}