This commit is contained in:
Tamo 2021-11-04 16:03:52 +01:00
parent 07a5ffb04c
commit 72a9071203
No known key found for this signature in database
GPG Key ID: 20CD8020AFA88D69
2 changed files with 4 additions and 4 deletions

View File

@ -150,7 +150,7 @@ impl<'a> Display for Error<'a> {
writeln!(f, "Was expecting a value but instead got nothing.")?
}
ErrorKind::MissingClosingDelimiter(c) => {
writeln!(f, "Expression `{}` is missing the following closing delemiter: `{}`.", input, c)?
writeln!(f, "Expression `{}` is missing the following closing delimiter: `{}`.", input, c)?
}
ErrorKind::ExpectedValue => {
writeln!(f, "Was expecting a value but instead got `{}`.", input)?

View File

@ -541,9 +541,9 @@ pub mod tests {
("_geoPoint(12, 13, 14)", "`_geoPoint` is a reserved keyword and thus can't be used as a filter expression. Use the `_geoRadius(latitude, longitude, distance) built-in rule to filter on `_geo` coordinates."),
("position <= _geoPoint(12, 13, 14)", "`_geoPoint` is a reserved keyword and thus can't be used as a filter expression. Use the `_geoRadius(latitude, longitude, distance) built-in rule to filter on `_geo` coordinates."),
("position <= _geoRadius(12, 13, 14)", "The `_geoRadius` filter is an operation and can't be used as a value."),
("channel = 'ponce", "Expression `'ponce` is missing the following closing delemiter: `'`."),
("channel = \"ponce", "Expression `\"ponce` is missing the following closing delemiter: `\"`."),
("channel = mv OR (followers >= 1000", "Expression `(followers >= 1000` is missing the following closing delemiter: `)`."),
("channel = 'ponce", "Expression `'ponce` is missing the following closing delimiter: `'`."),
("channel = \"ponce", "Expression `\"ponce` is missing the following closing delimiter: `\"`."),
("channel = mv OR (followers >= 1000", "Expression `(followers >= 1000` is missing the following closing delimiter: `)`."),
("channel = mv OR followers >= 1000)", "Found unexpected characters at the end of the filter: `)`. You probably forgot an `OR` or an `AND` rule."),
];