From c4131a52c6802bec4d7d283693e3e63d24ed31c8 Mon Sep 17 00:00:00 2001 From: Gabriel Kaszewski Date: Sat, 25 Jul 2026 12:45:40 +0200 Subject: [PATCH] fmt --- tests/integration_tests.rs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/integration_tests.rs b/tests/integration_tests.rs index 3135678..d4594ea 100644 --- a/tests/integration_tests.rs +++ b/tests/integration_tests.rs @@ -1,4 +1,4 @@ -use codebase_to_prompt::{run, Config, Format}; +use codebase_to_prompt::{Config, Format, run}; use std::fs; use std::path::PathBuf; @@ -84,5 +84,8 @@ fn test_run_with_git_hash_append() { let name = name.to_string_lossy(); name.starts_with("output_") && name.ends_with(".txt") }); - assert!(hashed_file.is_some(), "expected output file with git hash suffix"); + assert!( + hashed_file.is_some(), + "expected output file with git hash suffix" + ); }