Skip to content

Commit

Permalink
fixed test case
Browse files Browse the repository at this point in the history
  • Loading branch information
pm-priyanka-bagade committed Apr 29, 2024
1 parent 6c08ffa commit ae344c7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/pubmatic/openwrap/wakanda/rulesMap_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ func Test_rulesMap_Incr(t *testing.T) {
name: "key_present",
fields: fields{
rules: map[string]*wakandaRule{
`key1`: &wakandaRule{
`key1`: {
TraceCount: 1,
},
},
Expand All @@ -141,7 +141,7 @@ func Test_rulesMap_Incr(t *testing.T) {
},
want: want{
rules: map[string]*wakandaRule{
`key1`: &wakandaRule{
`key1`: {
TraceCount: 2,
},
},
Expand All @@ -154,7 +154,7 @@ func Test_rulesMap_Incr(t *testing.T) {
name: "key_expired",
fields: fields{
rules: map[string]*wakandaRule{
`key1`: &wakandaRule{
`key1`: {
TraceCount: CMaxTraceCount,
},
},
Expand Down

0 comments on commit ae344c7

Please sign in to comment.