Skip to content

Commit

Permalink
fixed imports path
Browse files Browse the repository at this point in the history
  • Loading branch information
saurav534 committed Mar 24, 2022
1 parent 8ede87d commit b2ad6d2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions smile/smile.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@ package smile

import (
"encoding/json"

"github.com/zencoder/go-smile/decode"
"github.com/zencoder/go-smile/domain"
"github.com/gocollection/go-smile/decode"
"github.com/gocollection/go-smile/domain"
)

func DecodeToJSON(smile []byte) (string, error) {
Expand Down
4 changes: 2 additions & 2 deletions test/decode_test.go
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package test

import (
"github.com/gocollection/go-smile/smile"
"github.com/gocollection/go-smile/test/testdata"
"path/filepath"
"testing"

"github.com/stretchr/testify/require"
"github.com/zencoder/go-smile/smile"
"github.com/zencoder/go-smile/test/testdata"
)

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

0 comments on commit b2ad6d2

Please sign in to comment.