Skip to content

Commit

Permalink
Fixed tests to handle new mappings
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanratcliffe committed Aug 14, 2024
1 parent ada4ddb commit c1397b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tfutils/plan_mapper_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ func TestMappedItemDiffsFromPlan(t *testing.T) {
t.Errorf("Expected 16 secrets, got %v", results.RemovedSecrets)
}

if len(results.Results) != 5 {
t.Errorf("Expected 5 changes, got %v:", len(results.Results))
if len(results.Results) != 6 {
t.Errorf("Expected 6 changes, got %v:", len(results.Results))
for _, diff := range results.Results {
t.Errorf(" %v", diff)
}
Expand Down

0 comments on commit c1397b1

Please sign in to comment.