Signed-off-by: William Johnson <wjohnson@DDN12219M.local>
This commit is contained in:
William Johnson 2023-05-24 15:52:25 -04:00
Родитель 10bb05a0f9
Коммит b28fe78294
3 изменённых файлов: 3 добавлений и 6 удалений

Просмотреть файл

@ -803,7 +803,7 @@ mod tests {
value!([{"bobo": 50, "fofo": 100}, {"bobo": 60, "baz": 90}])
);
}
#[test]
fn test_binary_op_eq_ne() {
let evaluator = Evaluator::new();
@ -835,8 +835,7 @@ mod tests {
test("BOOLEAN", "true", true);
test("OBJECT", "OBJECT", true);
test("ARRAY", "[ 'string' ]", true);
test("NULL", "Null", true);
test("NULL", "null", true);
test("NULL", "null", true);
test("OBJECT", "{ 'x': 1, 'y': 2 }", false);

Просмотреть файл

@ -138,7 +138,7 @@ mod tests {
#[test]
fn test_dot_op_equality_with_null() {
let exp = "foo.bar == Null";
let exp = "foo.bar == null";
let parsed = Parser::parse(exp).unwrap();
assert_eq!(
parsed,

Просмотреть файл

@ -128,9 +128,7 @@ String: String = {
};
Null: Option<Box<Expression>> = {
"Null" => None,
"null" => None,
"NULL" => None,
}
Identifier: String = {