blob: f868ab1fe354bbf1bb8c33187942cba88fa2bb90 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package compress
import (
"testing"
"github.com/go-faster/city"
"github.com/stretchr/testify/require"
)
func TestFormatU128(t *testing.T) {
v := city.CH128([]byte("Moscow"))
require.Equal(t, "6ddf3eeebf17df2e559d40c605f3ae22", FormatU128(v))
}
|