mirror of
https://github.com/status-im/consul.git
synced 2025-01-10 05:45:46 +00:00
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))
|
||
|
}
|