From 316b250a2425384bcf83d9299fc039ce7501975f Mon Sep 17 00:00:00 2001 From: Jeff Mitchell Date: Mon, 6 Jul 2020 12:41:09 -0400 Subject: [PATCH] Use dockertest v3 consistently (#167) --- go.mod | 1 - internal/db/db.go | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/go.mod b/go.mod index 296d81b626..b3667470f0 100644 --- a/go.mod +++ b/go.mod @@ -45,7 +45,6 @@ require ( github.com/mitchellh/mapstructure v1.3.2 github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect github.com/oligot/go-mod-upgrade v0.1.2 - github.com/ory/dockertest v3.3.5+incompatible github.com/ory/dockertest/v3 v3.6.0 github.com/pelletier/go-toml v1.7.0 // indirect github.com/pires/go-proxyproto v0.1.3 diff --git a/internal/db/db.go b/internal/db/db.go index ef1d62a382..3c62f7e36f 100644 --- a/internal/db/db.go +++ b/internal/db/db.go @@ -13,7 +13,7 @@ import ( "github.com/hashicorp/watchtower/internal/db/migrations" "github.com/jinzhu/gorm" "github.com/lib/pq" - "github.com/ory/dockertest" + "github.com/ory/dockertest/v3" ) type DbType int