summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorDan Duvall <dduvall@wikimedia.org>2017-09-14 09:50:44 -0700
committerDan Duvall <dduvall@wikimedia.org>2017-09-14 11:15:57 -0700
commitf52923fb5bce36a42ef571fedc743b7ed2e4f785 (patch)
tree22a1c356b831efd644574f67960999a4c690a7cc /build
parent6766ee4e74b25036d29a2e5e8f6eaf19969cf825 (diff)
downloadblubber-f52923fb5bce36a42ef571fedc743b7ed2e4f785.tar.gz
Switch to github import path for testify
Summary: Debian only provides a package for the GitHub version so it's either this or we'd have to maintain a patch to change the import paths at packaging, a moving target for sure. Since it's only a development dependency, we're not too worried about versioning it and this is a much more simple solution. Refs T175609 Test Plan: Run `go get ./... && go test ./...`. Reviewers: thcipriani, #release-engineering-team Reviewed By: thcipriani, #release-engineering-team Tags: #release-engineering-team Maniphest Tasks: T175609 Differential Revision: https://phabricator.wikimedia.org/D782
Diffstat (limited to 'build')
-rw-r--r--build/instructions_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/instructions_test.go b/build/instructions_test.go
index 3b276a4..acbdb7c 100644
--- a/build/instructions_test.go
+++ b/build/instructions_test.go
@@ -3,7 +3,7 @@ package build_test
import (
"testing"
- "gopkg.in/stretchr/testify.v1/assert"
+ "github.com/stretchr/testify/assert"
"phabricator.wikimedia.org/source/blubber/build"
)