From c5a8e6f90d8d317229c850355ef53fdd76157e94 Mon Sep 17 00:00:00 2001 From: Dominik Roos Date: Mon, 4 Mar 2024 18:49:36 +0100 Subject: [PATCH] scion-pki: drop spurious false in test skip condition (#4476) --- scion-pki/trcs/sign_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scion-pki/trcs/sign_test.go b/scion-pki/trcs/sign_test.go index 278e86ae41..ca9c81f67c 100644 --- a/scion-pki/trcs/sign_test.go +++ b/scion-pki/trcs/sign_test.go @@ -111,7 +111,7 @@ func TestSign(t *testing.T) { } func TestOpensslCompatible(t *testing.T) { - if !strings.HasSuffix(os.Getenv("TEST_TARGET"), "go_integration_test") && false { + if !strings.HasSuffix(os.Getenv("TEST_TARGET"), "go_integration_test") { t.Skip("This test only runs as integration test") }