From 684f5c9fa70708a9f79c33c09e16ce0bd25446d5 Mon Sep 17 00:00:00 2001 From: Zvonimir Pavlinovic Date: Thu, 27 Jun 2024 15:10:53 +0000 Subject: [PATCH] all: remove skipIfShort We don't have any tests using it. Change-Id: I72b24d505c0d9ec5cf9fce883bc04ed10f6bfd4f Reviewed-on: https://go-review.googlesource.com/c/vuln/+/595455 Auto-Submit: Zvonimir Pavlinovic LUCI-TryBot-Result: Go LUCI Reviewed-by: Maceo Thompson --- all_test.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/all_test.go b/all_test.go index 21c8f25..9d07611 100644 --- a/all_test.go +++ b/all_test.go @@ -92,9 +92,3 @@ func rungo(t *testing.T, args ...string) { t.Fatalf("%v: %v\n%s", cmd, err, output) } } - -func skipIfShort(t *testing.T) { - if testing.Short() { - t.Skipf("skipping: short mode") - } -}