summaryrefslogtreecommitdiffhomepage
path: root/dhcpv6/dhcpv6_test.go
diff options
context:
space:
mode:
authorChris Koch <chrisko@google.com>2021-05-28 05:13:40 -0700
committerChris K <c@chrisko.ch>2021-05-28 05:31:48 -0700
commitfb4eaaa00ad29a188328380690494d9267dc1ccc (patch)
treea9ca37d6dbd11f7a13e3cfc0515c496710d6369a /dhcpv6/dhcpv6_test.go
parent95b2ff6905c9bd0fdcb17fe6589c95a0840a2b46 (diff)
Break circular dependency on u-root
u-root -> dhcp -> u-root is the circular dependency. Which is fine, except we messed up modules in u-root big time. We need to break the circular dep for now. Signed-off-by: Chris Koch <chrisko@google.com>
Diffstat (limited to 'dhcpv6/dhcpv6_test.go')
-rw-r--r--dhcpv6/dhcpv6_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/dhcpv6/dhcpv6_test.go b/dhcpv6/dhcpv6_test.go
index 1ecaa3c..a329e0a 100644
--- a/dhcpv6/dhcpv6_test.go
+++ b/dhcpv6/dhcpv6_test.go
@@ -10,7 +10,7 @@ import (
"github.com/insomniacslk/dhcp/iana"
"github.com/stretchr/testify/require"
"github.com/stretchr/testify/suite"
- "github.com/u-root/u-root/pkg/rand"
+ "github.com/u-root/uio/rand"
)
func randomReadMock(value []byte, n int, err error) func([]byte) (int, error) {