summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Martín Nieto <[email protected]>2013-09-22 00:05:37 +0200
committerCarlos Martín Nieto <[email protected]>2013-09-22 00:05:37 +0200
commitf583ad8abd047b2b281c56be9ca2f3c811ae112b (patch)
treedda706ff3240dc0815e34153fcf10aa5595c73e6
parent6c97b9ac9dd951d71eb7422fe9d5a458eacef708 (diff)
Remove leftover reference to old const
-rw-r--r--odb_test.go2
1 files changed, 1 insertions, 1 deletions
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)