Skip to content

Commit

Permalink
update tests to cater for new namespace attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
efcasado committed Apr 6, 2024
1 parent 001157e commit a4b511d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pulsar/resource_pulsar_namespace_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -399,8 +399,8 @@ func testNamespaceImported() resource.ImportStateCheckFunc {
return fmt.Errorf("expected %d states, got %d: %#v", 1, len(s), s)
}

if len(s[0].Attributes) != 11 {
return fmt.Errorf("expected %d attrs, got %d: %#v", 11, len(s[0].Attributes), s[0].Attributes)
if len(s[0].Attributes) != 12 {
return fmt.Errorf("expected %d attrs, got %d: %#v", 12, len(s[0].Attributes), s[0].Attributes)
}

return nil
Expand Down

0 comments on commit a4b511d

Please sign in to comment.