浏览代码

acme/autocert: correct acme package import

An internal import slipped through in autocert renewal tests
during https://go-review.googlesource.com/28297 submission.

No internal imports should be found in autocert anymore.

Change-Id: Ib1fc1e0acaf59f363611cec3cd2b81e19f41d6eb
Reviewed-on: https://go-review.googlesource.com/28298
Run-TryBot: Alex Vaghin <ddos@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Alex Vaghin <ddos@google.com>
Alex Vaghin 9 年之前
父节点
当前提交
dfc9fd3102
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      acme/autocert/renewal_test.go

+ 1 - 1
acme/autocert/renewal_test.go

@@ -17,7 +17,7 @@ import (
 	"testing"
 	"time"
 
-	"golang.org/x/crypto/acme/internal/acme"
+	"golang.org/x/crypto/acme"
 )
 
 func TestRenewalNext(t *testing.T) {