Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
criminosis committed Mar 31, 2021
1 parent c8e4106 commit fba077d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion gremlin-client/src/io/serializer_v2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,10 @@ mod tests {
});

let result = deserializer_v2(&value).expect("Failed to deserialize Date");
assert_eq!(result, GValue::Date(chrono::Utc.timestamp_millis(1551825863)));
assert_eq!(
result,
GValue::Date(chrono::Utc.timestamp_millis(1551825863))
);

// UUID
let value = json!({
Expand Down
5 changes: 4 additions & 1 deletion gremlin-client/src/io/serializer_v3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,10 @@ mod tests {
});

let result = deserializer_v3(&value).expect("Failed to deserialize Date");
assert_eq!(result, GValue::Date(chrono::Utc.timestamp_millis(1551825863)));
assert_eq!(
result,
GValue::Date(chrono::Utc.timestamp_millis(1551825863))
);

// UUID
let value = json!({
Expand Down

0 comments on commit fba077d

Please sign in to comment.