From e93676bbb7cbae790c9fea7c0a49e7d55f6abbd5 Mon Sep 17 00:00:00 2001 From: lucaronin Date: Thu, 28 May 2026 00:59:55 +0200 Subject: [PATCH] test: format git no remote regression --- src-tauri/tests/git_connect_no_remote.rs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src-tauri/tests/git_connect_no_remote.rs b/src-tauri/tests/git_connect_no_remote.rs index 3e81bb69..3a67b6ea 100644 --- a/src-tauri/tests/git_connect_no_remote.rs +++ b/src-tauri/tests/git_connect_no_remote.rs @@ -53,7 +53,9 @@ fn git_add_remote_ignores_name_only_origin_config() { .unwrap(); assert_eq!(result.status, "connected"); - assert!(git_remote_status(local.path().to_str().unwrap()) - .unwrap() - .has_remote); + assert!( + git_remote_status(local.path().to_str().unwrap()) + .unwrap() + .has_remote + ); }