From 9d1c9867e7a46c6a635b5b8720b5021194a30b4e Mon Sep 17 00:00:00 2001 From: Paoletta De Andante Date: Tue, 28 Jan 2025 21:28:39 -0500 Subject: [PATCH] fmt --- tests/test_load_tx.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/test_load_tx.rs b/tests/test_load_tx.rs index 9d0520f..da6c8b6 100644 --- a/tests/test_load_tx.rs +++ b/tests/test_load_tx.rs @@ -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", ); @@ -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(