Skip to content

Commit

Permalink
chore: fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cisse21 committed Jan 10, 2023
1 parent 5ba41cf commit 128bdbf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions processor/processor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2455,7 +2455,7 @@ var _ = Describe("TestConfigFilter", func() {
},
Destination: intgConfig,
}
filterConfig(&event, &intgConfig)
filterConfig(&event)
Expect(event).To(Equal(expectedEvent))
})

Expand Down Expand Up @@ -2508,7 +2508,7 @@ var _ = Describe("TestConfigFilter", func() {
},
Destination: intgConfig,
}
filterConfig(&event, &intgConfig)
filterConfig(&event)
Expect(event).To(Equal(expectedEvent))
})

Expand Down Expand Up @@ -2556,7 +2556,7 @@ var _ = Describe("TestConfigFilter", func() {
},
Destination: intgConfig,
}
filterConfig(&event, &intgConfig)
filterConfig(&event)
Expect(event).To(Equal(expectedEvent))
})
})
Expand Down

0 comments on commit 128bdbf

Please sign in to comment.