Skip to content

Commit

Permalink
update e2e tests
Browse files Browse the repository at this point in the history
Signed-off-by: chiragkyal <[email protected]>
  • Loading branch information
chiragkyal committed Nov 5, 2024
1 parent a9aea28 commit 650dd1b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/e2e/operator_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1246,8 +1246,8 @@ func TestAWSLoadBalancerControllerUserTags(t *testing.T) {
depGeneration := dep.Generation

// Check `--default-tags` arg for tags present in alb instance only
expectedTagValue := "conflict-key1=op-value2,conflict-key2=op-value3,op-key1=op-value1"
assertContainerArgFromDeployment(t, dep, awsLoadBalancerControllerContainerName, "--default-tags", expectedTagValue)
// expectedTagValue := "conflict-key1=op-value2,conflict-key2=op-value3,op-key1=op-value1"
// assertContainerArgFromDeployment(t, dep, awsLoadBalancerControllerContainerName, "--default-tags", expectedTagValue)

// Save a copy of the original infra Config, to revert changes before exiting.
originalInfra := infra.DeepCopy()
Expand Down Expand Up @@ -1297,7 +1297,7 @@ func TestAWSLoadBalancerControllerUserTags(t *testing.T) {
depGeneration = dep.Generation

// Check `--default-tags` arg for tags present in alb instance and infra status (initialInfraTags)
expectedTagValue = "conflict-key1=op-value2,conflict-key2=op-value3,op-key1=op-value1,plat-key1=plat-value1"
expectedTagValue := "conflict-key1=op-value2,conflict-key2=op-value3,op-key1=op-value1,plat-key1=plat-value1"
assertContainerArgFromDeployment(t, dep, awsLoadBalancerControllerContainerName, "--default-tags", expectedTagValue)

// Update the status again, removing one tag.
Expand Down

0 comments on commit 650dd1b

Please sign in to comment.