fix tests
This commit is contained in:
parent
4c489d18a2
commit
da6d384300
@ -352,6 +352,12 @@ func TestRevertMessages(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func TestPruningSimple(t *testing.T) {
|
func TestPruningSimple(t *testing.T) {
|
||||||
|
oldMaxNonceGap := MaxNonceGap
|
||||||
|
MaxNonceGap = 1000
|
||||||
|
defer func() {
|
||||||
|
MaxNonceGap = oldMaxNonceGap
|
||||||
|
}()
|
||||||
|
|
||||||
tma := newTestMpoolAPI()
|
tma := newTestMpoolAPI()
|
||||||
|
|
||||||
w, err := wallet.NewWallet(wallet.NewMemKeyStore())
|
w, err := wallet.NewWallet(wallet.NewMemKeyStore())
|
||||||
|
@ -369,6 +369,12 @@ func TestMessageChainSkipping(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func TestBasicMessageSelection(t *testing.T) {
|
func TestBasicMessageSelection(t *testing.T) {
|
||||||
|
oldMaxNonceGap := MaxNonceGap
|
||||||
|
MaxNonceGap = 1000
|
||||||
|
defer func() {
|
||||||
|
MaxNonceGap = oldMaxNonceGap
|
||||||
|
}()
|
||||||
|
|
||||||
mp, tma := makeTestMpool()
|
mp, tma := makeTestMpool()
|
||||||
|
|
||||||
// the actors
|
// the actors
|
||||||
|
Loading…
Reference in New Issue
Block a user