From 09242c19343a16757660128d22d4ac40e1bf63ea Mon Sep 17 00:00:00 2001 From: Nathan Button Date: Sun, 29 May 2016 15:52:34 -0600 Subject: [PATCH] fix godep references in test --- .gitignore | 1 + adjacency/adjacmartix_test.go | 2 +- entropy/entropyCalculator_test.go | 2 +- matching/matching_test.go | 2 +- utils/math/mathutils_test.go | 2 +- 5 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index eae064a..4bff1a2 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ zxcvbn +debug.test diff --git a/adjacency/adjacmartix_test.go b/adjacency/adjacmartix_test.go index a7bd8fa..c40d6ba 100644 --- a/adjacency/adjacmartix_test.go +++ b/adjacency/adjacmartix_test.go @@ -1,7 +1,7 @@ package adjacency import ( - "github.com/nbutton23/zxcvbn-go/Godeps/_workspace/src/github.com/stretchr/testify/assert" + "github.com/stretchr/testify/assert" "testing" ) diff --git a/entropy/entropyCalculator_test.go b/entropy/entropyCalculator_test.go index 82bfd97..07c26bc 100644 --- a/entropy/entropyCalculator_test.go +++ b/entropy/entropyCalculator_test.go @@ -1,7 +1,7 @@ package entropy import ( - "github.com/nbutton23/zxcvbn-go/Godeps/_workspace/src/github.com/stretchr/testify/assert" + "github.com/stretchr/testify/assert" "github.com/nbutton23/zxcvbn-go/match" "testing" ) diff --git a/matching/matching_test.go b/matching/matching_test.go index 1f20d52..1446036 100644 --- a/matching/matching_test.go +++ b/matching/matching_test.go @@ -1,7 +1,7 @@ package matching import ( - "github.com/nbutton23/zxcvbn-go/Godeps/_workspace/src/github.com/stretchr/testify/assert" + "github.com/stretchr/testify/assert" "github.com/nbutton23/zxcvbn-go/match" "strings" "testing" diff --git a/utils/math/mathutils_test.go b/utils/math/mathutils_test.go index fd9e65a..a085bd4 100644 --- a/utils/math/mathutils_test.go +++ b/utils/math/mathutils_test.go @@ -1,7 +1,7 @@ package zxcvbn_math import ( - "github.com/nbutton23/zxcvbn-go/Godeps/_workspace/src/github.com/stretchr/testify/assert" + "github.com/stretchr/testify/assert" "testing" )