Add comment separator for bitwise tests

This commit is contained in:
Diane Sparks 2022-03-06 10:20:40 -08:00
parent d6fafc171d
commit 284ddfd567
No known key found for this signature in database
GPG Key ID: E21ED76C61697D6E

View File

@ -395,6 +395,7 @@ fn test_builtin_functions() {
Ok(Value::String(String::from("(1, 2, 3)")))
);
assert_eq!(eval("str::from()"), Ok(Value::String(String::from("()"))));
// Bitwise
assert_eq!(eval("bitand(5, -1)"), Ok(Value::Int(5)));
assert_eq!(eval("bitand(6, 5)"), Ok(Value::Int(4)));
assert_eq!(eval("bitor(5, -1)"), Ok(Value::Int(-1)));