Skip to content

Commit 7059a8e

Browse files
committed
Fix final test
1 parent 8680159 commit 7059a8e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

influxdb/src/query/line_proto_term.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,9 @@ mod test {
107107
assert_eq!(FieldValue(&Type::SignedInteger(0)).escape(), r#"0i"#);
108108
assert_eq!(FieldValue(&Type::SignedInteger(83)).escape(), r#"83i"#);
109109

110-
assert_eq!(FieldValue(&Type::Text("".into())).escape(), r#""#);
110+
assert_eq!(FieldValue(&Type::Text("".into())).escape(), r#""""#);
111111
assert_eq!(FieldValue(&Type::Text("0".into())).escape(), r#""0""#);
112-
assert_eq!(FieldValue(&Type::Text("\"".into())).escape(), r#"\""#);
112+
assert_eq!(FieldValue(&Type::Text("\"".into())).escape(), r#""\"""#);
113113
assert_eq!(
114114
FieldValue(&Type::Text(r#"locat"\ ,=ion"#.into())).escape(),
115115
r#""locat\"\\\ \,\=ion""#

0 commit comments

Comments
 (0)