From 96920a8fb9167fdb8ee31977dbc110e0b8af1bec Mon Sep 17 00:00:00 2001 From: Oleksandr Smirnov Date: Sat, 22 Mar 2025 13:12:04 +0200 Subject: [PATCH] fixup! test: test it and fix it --- spec/integration/struct_tags_test.lua | 6 ------ 1 file changed, 6 deletions(-) diff --git a/spec/integration/struct_tags_test.lua b/spec/integration/struct_tags_test.lua index 6c09eac..9552339 100644 --- a/spec/integration/struct_tags_test.lua +++ b/spec/integration/struct_tags_test.lua @@ -21,7 +21,6 @@ T["struct_tags"]["should add tag"] = function() child.cmd "write" t.eq(t.readfile(tmp), fixtures.output) - t.deletefile(tmp) end T["struct_tags"]["should remove tag"] = function() @@ -35,7 +34,6 @@ T["struct_tags"]["should remove tag"] = function() child.cmd "write" t.eq(t.readfile(tmp), fixtures.output) - t.deletefile(tmp) end T["struct_tags"]["should be able to handle many structs"] = function() @@ -49,7 +47,6 @@ T["struct_tags"]["should be able to handle many structs"] = function() child.cmd "write" t.eq(t.readfile(tmp), fixtures.output) - t.deletefile(tmp) end T["struct_tags"]["should clear struct"] = function() @@ -63,7 +60,6 @@ T["struct_tags"]["should clear struct"] = function() child.cmd "write" t.eq(t.readfile(tmp), fixtures.output) - t.deletefile(tmp) end T["struct_tags"]["should add more than one tag"] = function() @@ -84,7 +80,6 @@ T["struct_tags"]["should add more than one tag"] = function() child.cmd "write" t.eq(t.readfile(tmp), fixtures.output) - t.deletefile(tmp) end T["struct_tags"]["should add tags on var"] = function() @@ -111,7 +106,6 @@ T["struct_tags"]["should add tags on short declr var"] = function() child.cmd "write" t.eq(t.readfile(tmp), fixtures.output) - t.deletefile(tmp) end return T