chore: remove debug prints (#8347)

Signed-off-by: nikpivkin <nikita.pivkin@smartforce.io>
This commit is contained in:
Nikita Pivkin
2025-02-04 18:57:08 +06:00
committed by GitHub
parent 5695eb22df
commit ffa30235f0
2 changed files with 0 additions and 4 deletions

View File

@@ -2,7 +2,6 @@ package analyzer_test
import (
"context"
"fmt"
"os"
"sync"
"testing"
@@ -686,7 +685,6 @@ func TestAnalyzerGroup_AnalyzerVersions(t *testing.T) {
})
require.NoError(t, err)
got := a.AnalyzerVersions()
fmt.Printf("%v\n", got)
assert.Equal(t, tt.want, got)
})
}

View File

@@ -1,7 +1,6 @@
package redshift
import (
"fmt"
"testing"
"github.com/stretchr/testify/assert"
@@ -76,7 +75,6 @@ func Test_Adapt(t *testing.T) {
t.Run(test.name, func(t *testing.T) {
modules := tftestutil.CreateModulesFromSource(t, test.terraform, ".tf")
adapted := Adapt(modules)
fmt.Println(adapted.SecurityGroups[0].Description.Value())
testutil.AssertDefsecEqual(t, test.expected, adapted)
})
}