mirror of
https://github.com/dolthub/dolt.git
synced 2026-04-24 03:16:12 -05:00
dolt/store/go: types: blob: Thread *format.
This commit is contained in:
committed by
Brian Hendriks
parent
1819ab18d5
commit
52cbcccb22
@@ -423,8 +423,9 @@ func TestNomsDiffPrintBlob(t *testing.T) {
|
||||
|
||||
expected := "- Blob (2.0 kB)\n+ Blob (11 B)\n"
|
||||
expectedPaths1 := []string{``}
|
||||
b1 := types.NewBlob(context.Background(), vs, strings.NewReader(strings.Repeat("x", 2*1024)))
|
||||
b2 := types.NewBlob(context.Background(), vs, strings.NewReader("Hello World"))
|
||||
// TODO(binformat)
|
||||
b1 := types.NewBlob(context.Background(), types.Format_7_18, vs, strings.NewReader(strings.Repeat("x", 2*1024)))
|
||||
b2 := types.NewBlob(context.Background(), types.Format_7_18, vs, strings.NewReader("Hello World"))
|
||||
|
||||
tf := func(leftRight bool) {
|
||||
buf := &bytes.Buffer{}
|
||||
|
||||
Reference in New Issue
Block a user