Skip to content

Commit 61f7d99

Browse files
committed
ci: fix simulator test
In bee0e99 the legacy event was removed, but the simulator test still observed it.
1 parent dbb7a5a commit 61f7d99

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

backend/devices/bitbox02/keystore_simulator_test.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ import (
4545
"github.com/BitBoxSwiss/bitbox-wallet-app/backend/coins/btc/types"
4646
coinpkg "github.com/BitBoxSwiss/bitbox-wallet-app/backend/coins/coin"
4747
"github.com/BitBoxSwiss/bitbox-wallet-app/backend/config"
48-
event "github.com/BitBoxSwiss/bitbox-wallet-app/backend/devices/device/event"
4948
"github.com/BitBoxSwiss/bitbox-wallet-app/backend/signing"
5049
"github.com/BitBoxSwiss/bitbox-wallet-app/util/errp"
5150
"github.com/BitBoxSwiss/bitbox-wallet-app/util/logging"
51+
"github.com/BitBoxSwiss/bitbox-wallet-app/util/observable"
5252
"github.com/BitBoxSwiss/bitbox-wallet-app/util/socksproxy"
5353
"github.com/BitBoxSwiss/bitbox02-api-go/api/common"
5454
"github.com/BitBoxSwiss/bitbox02-api-go/api/firmware"
@@ -259,8 +259,8 @@ func testSimulatorsAfterPairing(t *testing.T, run func(*testing.T, *Device, *byt
259259
testSimulators(t, func(t *testing.T, device *Device, stdOut *bytes.Buffer) {
260260
t.Helper()
261261
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) {
264264
_, deviceVerified := device.ChannelHash()
265265
if deviceVerified {
266266
// Accept pairing.
@@ -273,7 +273,7 @@ func testSimulatorsAfterPairing(t *testing.T, run func(*testing.T, *Device, *byt
273273
require.NoError(t, device.Init(true))
274274
select {
275275
case <-paired:
276-
case <-time.After(15 * time.Second):
276+
case <-time.After(1 * time.Second):
277277
require.Fail(t, "pairing timed out")
278278
}
279279
run(t, device, stdOut)

0 commit comments

Comments
 (0)