mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 21:35:52 +00:00
62005369b5
Co-authored-by: R.B. Boyer <4903+rboyer@users.noreply.github.com> Co-authored-by: R.B. Boyer <rb@hashicorp.com> Co-authored-by: Freddy <freddygv@users.noreply.github.com>
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))
|
|
}
|