Skip to content

Commit 946423b

Browse files
Minor list test naming matching
1 parent 9824bfd commit 946423b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stack_deployment_groups_integration_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ func TestStackDeploymentGroupsList(t *testing.T) {
4343

4444
stackUpdated.LatestStackConfiguration, _ = client.StackConfigurations.Read(ctx, stackUpdated.LatestStackConfiguration.ID)
4545

46-
t.Run("with valid stack configuration ID", func(t *testing.T) {
46+
t.Run("List with valid stack configuration ID", func(t *testing.T) {
4747
sdgl, err := client.StackDeploymentGroups.List(ctx, stackUpdated.LatestStackConfiguration.ID, nil)
4848
require.NoError(t, err)
4949
require.NotNil(t, sdgl)
@@ -57,7 +57,7 @@ func TestStackDeploymentGroupsList(t *testing.T) {
5757
require.Len(t, sdgl.Items, 2)
5858
})
5959

60-
t.Run("with invalid stack configuration ID", func(t *testing.T) {
60+
t.Run("List with invalid stack configuration ID", func(t *testing.T) {
6161
_, err := client.StackDeploymentGroups.List(ctx, "", nil)
6262
require.Error(t, err)
6363
})

0 commit comments

Comments
 (0)