Skip to content

Commit

Permalink
fixed receiver overlap test bug (GeoNet#310)
Browse files Browse the repository at this point in the history
  • Loading branch information
ozym authored May 27, 2018
1 parent 8269799 commit f053d4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/receivers_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ func TestReceivers(t *testing.T) {
if _, ok := installs[s.Mark]; !ok {
installs[s.Mark] = meta.DeployedReceiverList{}
}
installs[s.Mark] = append(installs[s.Model], s)
installs[s.Mark] = append(installs[s.Mark], s)
}

for _, v := range installs {
Expand Down

0 comments on commit f053d4c

Please sign in to comment.