mirror of
https://github.com/dolthub/dolt.git
synced 2026-05-01 20:00:22 -05:00
Merge pull request #535 from aboodman/blob-future
Convert NewBlob() away from using resolvedFutures
This commit is contained in:
@@ -104,7 +104,7 @@ func TestAccessors(t *testing.T) {
|
||||
assert.Equal("bye", st.String())
|
||||
|
||||
assert.True(st.Blob().Equals(types.NewEmptyBlob()))
|
||||
b, err := types.NewBlob(strings.NewReader("hello"))
|
||||
b, err := types.NewMemoryBlob(strings.NewReader("hello"))
|
||||
assert.NoError(err)
|
||||
st.SetBlob(b)
|
||||
assert.True(st.Blob().Equals(types.NewEmptyBlob()))
|
||||
|
||||
Reference in New Issue
Block a user