From 83f63e773b4dd5516af63ba8d7278e21f96f2062 Mon Sep 17 00:00:00 2001 From: Kurt Date: Fri, 11 Nov 2016 21:44:09 -0500 Subject: Adjust some names of test functions to conform with Go's naming conventions --- contrib/barcode/barcode.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'contrib/barcode') diff --git a/contrib/barcode/barcode.go b/contrib/barcode/barcode.go index 8fb371e..0649564 100644 --- a/contrib/barcode/barcode.go +++ b/contrib/barcode/barcode.go @@ -20,10 +20,6 @@ package barcode import ( "bytes" "errors" - "image/jpeg" - "io" - "strconv" - "sync" "github.com/boombuler/barcode" "github.com/boombuler/barcode/codabar" "github.com/boombuler/barcode/code128" @@ -34,6 +30,10 @@ import ( "github.com/boombuler/barcode/twooffive" "github.com/jung-kurt/gofpdf" "github.com/ruudk/golang-pdf417" + "image/jpeg" + "io" + "strconv" + "sync" ) // barcodes represents the barcodes that have been registered through this -- cgit v1.2.1-24-ge1ad