Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelreiswildlife committed Apr 9, 2024
1 parent c643c4e commit 208763f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion feedback/kafka_consumer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ var _ = Describe("Kafka Consumer", func() {
nil,
)
Expect(err).NotTo(HaveOccurred())
Eventually(client.msgChan, 10*time.Second).Should(Receive(Equal(&KafkaMessage{
Eventually(client.msgChan, 5*time.Millisecond, 100*time.Millisecond).Should(Receive(Equal(&KafkaMessage{
Game: game,
Platform: platform,
Value: value,
Expand Down
2 changes: 1 addition & 1 deletion feedback/listener_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ var _ = Describe("Feedback Listener", func() {
})

It("should delete a batch of tokens from a single game", func() {
logger, _ := test.NewNullLogger()
logger := logrus.New()
logger.Level = logrus.DebugLevel

config.Set("feedbackListeners.queue.group", fmt.Sprintf("group-%s", uuid.NewV4().String()))
Expand Down

0 comments on commit 208763f

Please sign in to comment.