mirror of https://github.com/hashicorp/consul
12 lines
164 B
Go
12 lines
164 B
Go
|
package topology
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/require"
|
||
|
)
|
||
|
|
||
|
func TestMergeSlices(t *testing.T) {
|
||
|
require.Nil(t, MergeSlices[int](nil, nil))
|
||
|
}
|