Skip to content

Commit 93f6815

Browse files
author
Reuven
committed
fix InterfaceMapDiff
1 parent 5528996 commit 93f6815

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

diff/interface_map_diff.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ func getInterfaceMapDiffInternal(map1, map2 InterfaceMap, filter StringSet) *Int
6161
for name2 := range map2 {
6262
if _, ok := filter[name2]; ok {
6363
if _, ok := map1[name2]; !ok {
64-
result.Added = append(result.Deleted, name2)
64+
result.Added = append(result.Added, name2)
6565
}
6666
}
6767
}

0 commit comments

Comments
 (0)