Skip to content

Commit

Permalink
Adding default base64 encoding to sqs send message.
Browse files Browse the repository at this point in the history
  • Loading branch information
andream16 committed Jul 17, 2018
1 parent 578f0c1 commit 4677bcf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pkg/aws/sqs/service_test.go
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package sqs

import (
"encoding/base64"
"encoding/json"
pkgAws "github.com/andream16/aws-sdk-go-bindings/pkg/aws"
"github.com/andream16/aws-sdk-go-bindings/testdata"
"github.com/stretchr/testify/assert"
"testing"
"encoding/base64"
"encoding/json"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion pkg/aws/sqs/util.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package sqs

import (
"encoding/base64"
"encoding/json"
"errors"
"github.com/aws/aws-sdk-go/service/sqs"
"reflect"
"encoding/base64"
)

// NewCreateQueueInput creates a new queue given its name
Expand Down
2 changes: 1 addition & 1 deletion pkg/aws/sqs/util_test.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package sqs

import (
"encoding/base64"
"encoding/json"
"github.com/stretchr/testify/assert"
"testing"
"encoding/base64"
)

func TestNewCreateQueueInput(t *testing.T) {
Expand Down

0 comments on commit 4677bcf

Please sign in to comment.