Skip to content

Commit

Permalink
Removed opaque assert_eq losing Err message
Browse files Browse the repository at this point in the history
  • Loading branch information
criminosis committed Nov 14, 2024
1 parent 03cb90a commit 49799e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gremlin-client/tests/custom_vertex_ids.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ fn test_mapping_custom_vertex_id(protocol: IoProtocol) {
.property("date", 1551825863 as i64)
.value_map(true)
.by(TraversalBuilder::new(Bytecode::new()).unfold())
.next();
assert_eq!(mark.is_ok(), true);
.next()
.expect("Should get a response");

#[derive(Debug, PartialEq, FromGMap)]
struct Person {
Expand Down

0 comments on commit 49799e2

Please sign in to comment.