From 71421fbaa5965ebecaf30d44c59d42535fca6757 Mon Sep 17 00:00:00 2001 From: Erin Call Date: Wed, 8 Jan 2020 11:08:39 -0800 Subject: [PATCH] Fix godotenv dependency in go.mod go.mod got an update when I ran the tests. It should've happened in 51058470e; I'm not sure why it was never updated. --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index e3fc56f..3d45e7f 100644 --- a/go.mod +++ b/go.mod @@ -4,7 +4,7 @@ go 1.13 require ( github.com/golang/mock v1.3.1 - github.com/joho/godotenv v1.3.0 // indirect + github.com/joho/godotenv v1.3.0 github.com/kelseyhightower/envconfig v1.4.0 github.com/stretchr/testify v1.4.0 golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f // indirect