mirror of
https://github.com/dolthub/dolt.git
synced 2026-02-12 18:59:03 -06:00
fix codec test
This commit is contained in:
@@ -133,7 +133,9 @@ func encFloat(f float64) []byte {
|
||||
}
|
||||
|
||||
func encStr(s string) []byte {
|
||||
return []byte(s)
|
||||
buf := make([]byte, len(s)+1)
|
||||
writeString(buf, s)
|
||||
return buf
|
||||
}
|
||||
|
||||
func TestCodecRoundTrip(t *testing.T) {
|
||||
|
||||
Reference in New Issue
Block a user