Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Paoletta De Andante committed Jan 29, 2025
1 parent e82dcc2 commit 9d1c986
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/test_load_tx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,7 @@ async fn test_tx_batch() -> anyhow::Result<()> {

assert!(total_tx_count == txs.len() as i64);


let cypher_query = query(
let cypher_query = query(
"MATCH ()-[r:Lifetime]->()
RETURN count(r) AS total_tx_count",
);
Expand All @@ -64,7 +63,7 @@ async fn test_tx_batch() -> anyhow::Result<()> {
// Fetch the first row only
let row = result.next().await?.unwrap();
let total_tx_count: i64 = row.get("total_tx_count").unwrap();
assert!(total_tx_count == 18 as i64);
assert!(total_tx_count == 18_i64);

// check there are transaction records with function args.
let cypher_query = query(
Expand Down

0 comments on commit 9d1c986

Please sign in to comment.