From f583ad8abd047b2b281c56be9ca2f3c811ae112b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn=20Nieto?= Date: Sun, 22 Sep 2013 00:05:37 +0200 Subject: [PATCH] Remove leftover reference to old const --- odb_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)