From 90cf56e2257d25fcbd4c7f2e027bfd9c6c547519 Mon Sep 17 00:00:00 2001 From: GitHub Action Bot Date: Sat, 20 Jul 2024 06:16:50 +0000 Subject: [PATCH] Commit from GitHub Actions (Format Code) --- src/lib.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 1de0f00..382c343 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -967,7 +967,9 @@ mod tests { let res = read_key(&consul, key).await.unwrap(); assert_eq!(res.index, index); - create_or_update_key_value(&consul, key, "This is a new test").await.unwrap(); + create_or_update_key_value(&consul, key, "This is a new test") + .await + .unwrap(); let res = read_key(&consul, key).await.unwrap(); assert!(res.index > index); }