diff --git a/pkg/synthesis/synthesis_test.go b/pkg/synthesis/synthesis_test.go index cbf35fa..18c1934 100644 --- a/pkg/synthesis/synthesis_test.go +++ b/pkg/synthesis/synthesis_test.go @@ -69,9 +69,9 @@ func TestPreprocessing(t *testing.T) { for i := range allTests { test := &allTests[i] // to generate output comment the following line and uncomment the one after - //test.runPreprocessing(t, OutputComparison) + test.runPreprocessing(t, OutputComparison) //nolint:gocritic // uncomment for generating output - test.runPreprocessing(t, OutputGeneration) + // test.runPreprocessing(t, OutputGeneration) } } @@ -90,9 +90,9 @@ func TestConvertToAbsract(t *testing.T) { for i := range allTests { test := &allTests[i] // to generate output comment the following line and uncomment the one after - //test.runConvertToAbstract(t, OutputComparison) + test.runConvertToAbstract(t, OutputComparison) //nolint:gocritic // uncomment for generating output - test.runConvertToAbstract(t, OutputGeneration) + // test.runConvertToAbstract(t, OutputGeneration) } }