@@ -12,8 +12,8 @@ import (
1212 "testing"
1313
1414 "github.com/databricks/cli/internal/testutil"
15- "github.com/databricks/cli/libs/golden"
1615 "github.com/databricks/cli/libs/iamutil"
16+ "github.com/databricks/cli/libs/testdiff"
1717 "github.com/databricks/databricks-sdk-go"
1818 "github.com/databricks/databricks-sdk-go/service/iam"
1919 "github.com/elliotchance/orderedmap/v3"
@@ -57,7 +57,7 @@ func RequireOutput(t testutil.TestingT, ctx context.Context, args []string, expe
5757
5858 if out != expected {
5959 actual := fmt .Sprintf ("Output from %v" , args )
60- golden .AssertEqualTexts (t , expectedFilename , actual , expected , out )
60+ testdiff .AssertEqualTexts (t , expectedFilename , actual , expected , out )
6161
6262 if OverwriteMode {
6363 WriteFile (t , expectedPath , out )
@@ -75,7 +75,7 @@ func RequireOutputJQ(t testutil.TestingT, ctx context.Context, args []string, ex
7575
7676 if out != expected {
7777 actual := fmt .Sprintf ("Output from %v" , args )
78- golden .AssertEqualJSONs (t .(* testing.T ), expectedFilename , actual , expected , out , ignorePaths )
78+ testdiff .AssertEqualJSONs (t .(* testing.T ), expectedFilename , actual , expected , out , ignorePaths )
7979
8080 if OverwriteMode {
8181 WriteFile (t , expectedPath , out )
0 commit comments