@@ -45,10 +45,10 @@ import (
45
45
"github.com/BitBoxSwiss/bitbox-wallet-app/backend/coins/btc/types"
46
46
coinpkg "github.com/BitBoxSwiss/bitbox-wallet-app/backend/coins/coin"
47
47
"github.com/BitBoxSwiss/bitbox-wallet-app/backend/config"
48
- event "github.com/BitBoxSwiss/bitbox-wallet-app/backend/devices/device/event"
49
48
"github.com/BitBoxSwiss/bitbox-wallet-app/backend/signing"
50
49
"github.com/BitBoxSwiss/bitbox-wallet-app/util/errp"
51
50
"github.com/BitBoxSwiss/bitbox-wallet-app/util/logging"
51
+ "github.com/BitBoxSwiss/bitbox-wallet-app/util/observable"
52
52
"github.com/BitBoxSwiss/bitbox-wallet-app/util/socksproxy"
53
53
"github.com/BitBoxSwiss/bitbox02-api-go/api/common"
54
54
"github.com/BitBoxSwiss/bitbox02-api-go/api/firmware"
@@ -259,8 +259,8 @@ func testSimulatorsAfterPairing(t *testing.T, run func(*testing.T, *Device, *byt
259
259
testSimulators (t , func (t * testing.T , device * Device , stdOut * bytes.Buffer ) {
260
260
t .Helper ()
261
261
paired := make (chan struct {})
262
- device .SetOnEvent (func (ev event.Event , obj interface {} ) {
263
- if ev == event . Event (firmware .EventChannelHashChanged ) {
262
+ device .Observe (func (event observable .Event ) {
263
+ if event . Subject == string (firmware .EventChannelHashChanged ) {
264
264
_ , deviceVerified := device .ChannelHash ()
265
265
if deviceVerified {
266
266
// Accept pairing.
@@ -273,7 +273,7 @@ func testSimulatorsAfterPairing(t *testing.T, run func(*testing.T, *Device, *byt
273
273
require .NoError (t , device .Init (true ))
274
274
select {
275
275
case <- paired :
276
- case <- time .After (15 * time .Second ):
276
+ case <- time .After (1 * time .Second ):
277
277
require .Fail (t , "pairing timed out" )
278
278
}
279
279
run (t , device , stdOut )
0 commit comments