diff --git a/odb_test.go b/odb_test.go index bf1f847..3c7624c 100644 --- a/odb_test.go +++ b/odb_test.go @@ -16,7 +16,7 @@ func TestOdbStream(t *testing.T) { str := "hello, world!" - stream, error := odb.NewWriteStream(len(str), OBJ_BLOB) + stream, error := odb.NewWriteStream(len(str), ObjectBlob) checkFatal(t, error) n, error := io.WriteString(stream, str) checkFatal(t, error)