Skip to content

Commit

Permalink
Refactor import path
Browse files Browse the repository at this point in the history
  • Loading branch information
shaodan committed Mar 17, 2020
1 parent 7eb3689 commit e5ae062
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion internal/requestbuilder/privateurlbuilder_test.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
package requestbuilder

import (
"../../pkg/getrequest"
"testing"
"time"

"github.com/huobirdcenter/huobi_golang/pkg/getrequest"
)

func TestPrivateUrlBuilder_Build_NoRequestParameter_Success(t *testing.T) {
Expand Down
5 changes: 3 additions & 2 deletions internal/requestbuilder/publicurlbuilder_test.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
package requestbuilder

import (
"../../pkg/getrequest"
"testing"

"github.com/huobirdcenter/huobi_golang/pkg/getrequest"
)

func TestPublicUrlBuilder_Build_NoRequestParameter_Success(t *testing.T) {
Expand All @@ -29,4 +30,4 @@ func TestPublicUrlBuilder_Build_HasRequestParameter_Success(t *testing.T) {
if result != expected {
t.Errorf("expected: %s, actual: %s", expected, result)
}
}
}

0 comments on commit e5ae062

Please sign in to comment.