Skip to content

Commit

Permalink
Update tools/data-api-differ/internal/differ/differ_common_types.go
Browse files Browse the repository at this point in the history
Co-authored-by: Tom Bamford <[email protected]>
  • Loading branch information
tombuildsstuff and manicminer authored Jun 25, 2024
1 parent 3df9cc1 commit 717268b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func (d differ) changesForCommonTypes(initial, updated map[string]models.CommonT
apiVersions := uniqueKeys(initial, updated)
for _, apiVersion := range apiVersions {
log.Logger.Info(fmt.Sprintf("Detecting changes to the Common Types in API Version %q..", apiVersion))
changesForService, err := d.changesForCommonTypesInAPIVersion(apiVersion, initial, updated, includeNestedChangesWhenNew)
changesForCommonType, err := d.changesForCommonTypesInAPIVersion(apiVersion, initial, updated, includeNestedChangesWhenNew)
if err != nil {
return nil, fmt.Errorf("detecting changes to the Common Types in API Version %q: %+v", apiVersion, err)
}
Expand Down

0 comments on commit 717268b

Please sign in to comment.