aboutsummaryrefslogtreecommitdiffstats
path: root/compression
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2014-11-16 10:21:55 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2014-11-16 10:21:55 +0800
commitddca18638f1a81e730001ff7fda4581379094aa4 (patch)
treed6a9f95b6a04991a95ed3ea1047e641a70b7ecb1 /compression
parent3588c4a9feb4204419d9c0fa2a4c9089120221b7 (diff)
downloadgo-tangerine-ddca18638f1a81e730001ff7fda4581379094aa4.tar
go-tangerine-ddca18638f1a81e730001ff7fda4581379094aa4.tar.gz
go-tangerine-ddca18638f1a81e730001ff7fda4581379094aa4.tar.bz2
go-tangerine-ddca18638f1a81e730001ff7fda4581379094aa4.tar.lz
go-tangerine-ddca18638f1a81e730001ff7fda4581379094aa4.tar.xz
go-tangerine-ddca18638f1a81e730001ff7fda4581379094aa4.tar.zst
go-tangerine-ddca18638f1a81e730001ff7fda4581379094aa4.zip
update imports order per goimports
Diffstat (limited to 'compression')
-rw-r--r--compression/rle/read_write_test.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/compression/rle/read_write_test.go b/compression/rle/read_write_test.go
index 21a1eab35..e6aac9093 100644
--- a/compression/rle/read_write_test.go
+++ b/compression/rle/read_write_test.go
@@ -1,8 +1,9 @@
package rle
import (
- checker "gopkg.in/check.v1"
"testing"
+
+ checker "gopkg.in/check.v1"
)
func Test(t *testing.T) { checker.TestingT(t) }