Skip to content

Commit

Permalink
chore: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
QuenKar committed Oct 18, 2023
1 parent 784ce81 commit 941680b
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions src/datatypes/src/value.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2235,13 +2235,10 @@ mod tests {
check_value_ref_size_eq(
&ValueRef::List(ListValueRef::Ref {
val: &ListValue {
items: Some(Box::new(
vec![
Value::String("hello world".into()),
Value::String("greptimedb".into()),
]
.into(),
)),
items: Some(Box::new(vec![
Value::String("hello world".into()),
Value::String("greptimedb".into()),
])),
datatype: ConcreteDataType::string_datatype(),
},
}),
Expand Down

0 comments on commit 941680b

Please sign in to comment.