@@ -592,7 +592,7 @@ test "Snapshot JSON format" {
592592 try snap .match (value );
593593
594594 // Cleanup
595- compat .deleteFile (std .testing .allocator ,".snapshots/test_snapshot_json.snap" ) catch {};
595+ compat .deleteFile (std .testing .allocator , ".snapshots/test_snapshot_json.snap" ) catch {};
596596}
597597
598598test "Snapshot mismatch detection" {
@@ -609,7 +609,7 @@ test "Snapshot mismatch detection" {
609609 try std .testing .expectError (error .SnapshotMismatch , result );
610610
611611 // Cleanup
612- compat .deleteFile (std .testing .allocator ,".snapshots/test_mismatch.snap" ) catch {};
612+ compat .deleteFile (std .testing .allocator , ".snapshots/test_mismatch.snap" ) catch {};
613613}
614614
615615test "Snapshot diff generation" {
@@ -639,8 +639,8 @@ test "Named snapshots" {
639639 try snap2 .matchStringNamed ("second" , "Second snapshot" );
640640
641641 // Cleanup
642- compat .deleteFile (std .testing .allocator ,".snapshots/test_named_first.snap" ) catch {};
643- compat .deleteFile (std .testing .allocator ,".snapshots/test_named_second.snap" ) catch {};
642+ compat .deleteFile (std .testing .allocator , ".snapshots/test_named_first.snap" ) catch {};
643+ compat .deleteFile (std .testing .allocator , ".snapshots/test_named_second.snap" ) catch {};
644644}
645645
646646test "Snapshot cleanup - list snapshots" {
@@ -664,7 +664,7 @@ test "Snapshot cleanup - list snapshots" {
664664 try std .testing .expect (snapshots .items .len > 0 );
665665
666666 // Cleanup
667- compat .deleteFile (std .testing .allocator ,".snapshots/cleanup_test_1.snap" ) catch {};
667+ compat .deleteFile (std .testing .allocator , ".snapshots/cleanup_test_1.snap" ) catch {};
668668}
669669
670670test "Snapshot cleanup - remove unused" {
@@ -688,7 +688,7 @@ test "Snapshot cleanup - remove unused" {
688688 try std .testing .expect (removed >= 1 );
689689
690690 // Cleanup remaining
691- compat .deleteFile (std .testing .allocator ,".snapshots/cleanup_used.snap" ) catch {};
691+ compat .deleteFile (std .testing .allocator , ".snapshots/cleanup_used.snap" ) catch {};
692692}
693693
694694test "Snapshot compact format" {
@@ -702,5 +702,5 @@ test "Snapshot compact format" {
702702 try snap .matchString ("compact snapshot" );
703703
704704 // Cleanup
705- compat .deleteFile (std .testing .allocator ,".snapshots/test_compact.snap" ) catch {};
705+ compat .deleteFile (std .testing .allocator , ".snapshots/test_compact.snap" ) catch {};
706706}
0 commit comments