Merge pull request #4548 from cfromknecht/remove-dev-wt-tests
watchtower: remove dev tag from unit test files
This commit is contained in:
commit
05fbd5a9a0
@ -1,5 +1,3 @@
|
|||||||
// +build dev
|
|
||||||
|
|
||||||
package lookout_test
|
package lookout_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
// +build dev
|
|
||||||
|
|
||||||
package lookout_test
|
package lookout_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
// +build dev
|
|
||||||
|
|
||||||
package lookout
|
package lookout
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
// +build dev
|
|
||||||
|
|
||||||
package wtclient_test
|
package wtclient_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
@ -24,6 +22,7 @@ import (
|
|||||||
"github.com/lightningnetwork/lnd/watchtower/wtmock"
|
"github.com/lightningnetwork/lnd/watchtower/wtmock"
|
||||||
"github.com/lightningnetwork/lnd/watchtower/wtpolicy"
|
"github.com/lightningnetwork/lnd/watchtower/wtpolicy"
|
||||||
"github.com/lightningnetwork/lnd/watchtower/wtserver"
|
"github.com/lightningnetwork/lnd/watchtower/wtserver"
|
||||||
|
"github.com/stretchr/testify/require"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
@ -1457,7 +1456,8 @@ var clientTests = []clientTest{
|
|||||||
// Re-add the tower. We prevent the tower from acking
|
// Re-add the tower. We prevent the tower from acking
|
||||||
// session creation to ensure the inactive sessions are
|
// session creation to ensure the inactive sessions are
|
||||||
// not used.
|
// not used.
|
||||||
h.server.Stop()
|
err := h.server.Stop()
|
||||||
|
require.Nil(h.t, err)
|
||||||
h.serverCfg.NoAckCreateSession = true
|
h.serverCfg.NoAckCreateSession = true
|
||||||
h.startServer()
|
h.startServer()
|
||||||
h.addTower(h.serverAddr)
|
h.addTower(h.serverAddr)
|
||||||
@ -1466,7 +1466,8 @@ var clientTests = []clientTest{
|
|||||||
// Finally, allow the tower to ack session creation,
|
// Finally, allow the tower to ack session creation,
|
||||||
// allowing the state updates to be sent through the new
|
// allowing the state updates to be sent through the new
|
||||||
// session.
|
// session.
|
||||||
h.server.Stop()
|
err = h.server.Stop()
|
||||||
|
require.Nil(h.t, err)
|
||||||
h.serverCfg.NoAckCreateSession = false
|
h.serverCfg.NoAckCreateSession = false
|
||||||
h.startServer()
|
h.startServer()
|
||||||
h.waitServerUpdates(hints[numUpdates/2:], 5*time.Second)
|
h.waitServerUpdates(hints[numUpdates/2:], 5*time.Second)
|
||||||
|
Loading…
Reference in New Issue
Block a user