dolt/go/store: types: NewList: Remove redundant Format parameter.

This commit is contained in:
Aaron Son
2019-07-02 14:05:32 -07:00
committed by Brian Hendriks
parent 48a422386d
commit 656ea04b6f
40 changed files with 227 additions and 229 deletions
+1 -1
View File
@@ -68,7 +68,7 @@ func createList(kv ...interface{}) types.List {
vs := newTestValueStore()
defer vs.Close()
keyValues := valsToTypesValues(kv...)
return types.NewList(context.Background(), types.Format_7_18, vs, keyValues...)
return types.NewList(context.Background(), vs, keyValues...)
}
func createStruct(name string, kv ...interface{}) types.Struct {