From 02f4651206249f4d5cd0efc5b904961858961a7a Mon Sep 17 00:00:00 2001 From: Ben Hood <0x6e6562@gmail.com> Date: Wed, 27 May 2015 10:17:37 +0100 Subject: [PATCH] Let's see if the github variant of snappy is any better than the one from google --- compressor.go | 2 +- compressor_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/compressor.go b/compressor.go index b49fb9dc8..20ba0c2ba 100644 --- a/compressor.go +++ b/compressor.go @@ -1,7 +1,7 @@ package gocql import ( - "code.google.com/p/snappy-go/snappy" + "github.com/golang/snappy/snappy" ) type Compressor interface { diff --git a/compressor_test.go b/compressor_test.go index d943d3697..28240886b 100644 --- a/compressor_test.go +++ b/compressor_test.go @@ -4,7 +4,7 @@ package gocql import ( "bytes" - "code.google.com/p/snappy-go/snappy" + "github.com/golang/snappy/snappy" "testing" )