mirror of
https://github.com/joshuarubin/go-sway
synced 2024-11-22 21:11:59 +01:00
fix test
Signed-off-by: Joshua Rubin <me@jawa.dev>
This commit is contained in:
parent
b56ddd2124
commit
7764779055
@ -3,6 +3,7 @@ package sway_test
|
||||
import (
|
||||
"context"
|
||||
"encoding/json"
|
||||
"errors"
|
||||
"fmt"
|
||||
"log"
|
||||
"testing"
|
||||
@ -115,7 +116,7 @@ func TestSocket(t *testing.T) {
|
||||
client: client,
|
||||
}
|
||||
|
||||
if err = sway.Subscribe(ctx, th, sway.EventTypeWindow); err != context.DeadlineExceeded && err != nil {
|
||||
if err = sway.Subscribe(ctx, th, sway.EventTypeWindow); err != nil && !errors.Is(err, context.DeadlineExceeded) {
|
||||
t.Fatal(err)
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user