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 удалений

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

@ -835,7 +835,6 @@ mod tests {
test("BOOLEAN", "true", true); test("BOOLEAN", "true", true);
test("OBJECT", "OBJECT", true); test("OBJECT", "OBJECT", true);
test("ARRAY", "[ 'string' ]", true); test("ARRAY", "[ 'string' ]", true);
test("NULL", "Null", true);
test("NULL", "null", true); test("NULL", "null", true);
test("OBJECT", "{ 'x': 1, 'y': 2 }", false); test("OBJECT", "{ 'x': 1, 'y': 2 }", false);

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

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

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

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