From 4c721c874c43f5cfc1ebcdf821d7016160ab19de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patryk=20Ma=C5=82ek?= Date: Mon, 6 May 2024 18:11:14 +0200 Subject: [PATCH] chore: remove leftover debug code --- test/helpers/setup.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/helpers/setup.go b/test/helpers/setup.go index 9c473a6e0..7dc29c91e 100644 --- a/test/helpers/setup.go +++ b/test/helpers/setup.go @@ -75,8 +75,6 @@ func ParseGoTestFlags(testRunner func(t *testing.T), testSuiteToRun []func(t *te os.Exit(1) } - fmt.Printf("test.run: %s\n", fRun.Value.String()) - // Hack - set test.run flag to the name of the test function that runs the test suite // to execute it with tests that are returned from this function. // They are explicitly passed to RunTestSuite(...) as an argument. @@ -87,8 +85,6 @@ func ParseGoTestFlags(testRunner func(t *testing.T), testSuiteToRun []func(t *te fmt.Printf("test.run: %s\n", fRun.Value.String()) - // os.Exit(0) - return testSuiteToRun }