Skip to content

Commit

Permalink
adjusted test according to changes
Browse files Browse the repository at this point in the history
  • Loading branch information
eranturgeman committed Dec 10, 2024
1 parent 19dbaac commit a11abc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/xscconfigprofile_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ import (
"testing"
)

func TestGetConfigurationProfile(t *testing.T) {
func TestGetConfigurationProfileByName(t *testing.T) {
initXscTest(t, services.ConfigProfileMinXscVersion)

mockServer, configProfileService := createXscMockServerForConfigProfile(t)
defer mockServer.Close()

configProfile, err := configProfileService.GetConfigurationProfile("default-test-profile")
configProfile, err := configProfileService.GetConfigurationProfileByName("default-test-profile")
assert.NoError(t, err)

profileFileContent, err := os.ReadFile("testdata/configprofile/configProfileExample.json")
Expand Down

0 comments on commit a11abc6

Please sign in to comment.