mirror of https://github.com/status-im/consul.git
connect: use reflect.DeepEqual instead for test
This commit is contained in:
parent
4e5fb6bc19
commit
f95c6807e7
|
@ -2,6 +2,7 @@ package consul
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
"os"
|
||||||
|
"reflect"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
@ -12,7 +13,6 @@ import (
|
||||||
"github.com/hashicorp/consul/testutil/retry"
|
"github.com/hashicorp/consul/testutil/retry"
|
||||||
"github.com/hashicorp/net-rpc-msgpackrpc"
|
"github.com/hashicorp/net-rpc-msgpackrpc"
|
||||||
"github.com/hashicorp/serf/serf"
|
"github.com/hashicorp/serf/serf"
|
||||||
"github.com/pascaldekloe/goe/verify"
|
|
||||||
"github.com/stretchr/testify/require"
|
"github.com/stretchr/testify/require"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -1140,6 +1140,8 @@ func TestLeader_PersistIntermediateCAs(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
_, newLeaderRoot := leader.getCAProvider()
|
_, newLeaderRoot := leader.getCAProvider()
|
||||||
verify.Values(r, "", root, newLeaderRoot)
|
if !reflect.DeepEqual(newLeaderRoot, root) {
|
||||||
|
r.Fatalf("got %v, want %v", newLeaderRoot, root)
|
||||||
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue