mirror of https://github.com/status-im/consul.git
19 lines
370 B
Go
19 lines
370 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
//go:build !consulent
|
|
|
|
package peering_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/hashicorp/consul/agent/consul"
|
|
"github.com/hashicorp/go-hclog"
|
|
)
|
|
|
|
func newDefaultDepsEnterprise(t *testing.T, logger hclog.Logger, c *consul.Config) consul.EnterpriseDeps {
|
|
t.Helper()
|
|
return consul.EnterpriseDeps{}
|
|
}
|