Skip to content

Commit

Permalink
fix(BUX-26): webhook tests are failing in unpredictable way
Browse files Browse the repository at this point in the history
  • Loading branch information
dorzepowski committed May 30, 2023
1 parent 12b0913 commit 48d2d14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/tests/testpulse/test_websocket.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ func (c *WebsocketClient) Connect() error {
// If no error then returned <-chan can be used to listen for messages on websocket channel.
func (c *WebsocketClient) Subscribe(channel string) (<-chan string, error) {
if err := c.Connect(); err != nil {
return nil, err
c.log.Errorf("Error when trying to connect %v", err)
}

sub, subscribed, err := c.subscription(channel)
Expand Down

0 comments on commit 48d2d14

Please sign in to comment.