Skip to content

Commit

Permalink
Fix 'TestAccEKSNodeGroup_releaseVersion'.
Browse files Browse the repository at this point in the history
  • Loading branch information
ewbankkit committed Nov 8, 2023
1 parent 2f55a5c commit 1c2ec47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/service/eks/node_group_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ func TestAccEKSNodeGroup_releaseVersion(t *testing.T) {
CheckDestroy: testAccCheckNodeGroupDestroy(ctx),
Steps: []resource.TestStep{
{
Config: testAccNodeGroupConfig_releaseVersion(rName, "1.17"),
Config: testAccNodeGroupConfig_releaseVersion(rName, "1.27"),
Check: resource.ComposeTestCheckFunc(
testAccCheckNodeGroupExists(ctx, resourceName, &nodeGroup1),
resource.TestCheckResourceAttrPair(resourceName, "release_version", ssmParameterDataSourceName, "value"),
Expand All @@ -539,7 +539,7 @@ func TestAccEKSNodeGroup_releaseVersion(t *testing.T) {
ImportStateVerify: true,
},
{
Config: testAccNodeGroupConfig_releaseVersion(rName, "1.18"),
Config: testAccNodeGroupConfig_releaseVersion(rName, "1.28"),
Check: resource.ComposeTestCheckFunc(
testAccCheckNodeGroupExists(ctx, resourceName, &nodeGroup2),
testAccCheckNodeGroupNotRecreated(&nodeGroup1, &nodeGroup2),
Expand Down

0 comments on commit 1c2ec47

Please sign in to comment.