summaryrefslogtreecommitdiff
path: root/context_test.go
diff options
context:
space:
mode:
authorDave Henderson <dhenderson@gmail.com>2020-08-19 20:01:54 -0400
committerDave Henderson <dhenderson@gmail.com>2020-08-19 20:11:59 -0400
commit32b2da2b5af71a66629816f33034247c319899c9 (patch)
tree36af6a13a96b9333f2106c09e65952b1a4319d66 /context_test.go
parentc0d464d7c8f0585498e9b073a5421d13f8a8b574 (diff)
Go 1.15 bump and other updates
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
Diffstat (limited to 'context_test.go')
-rw-r--r--context_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/context_test.go b/context_test.go
index 287376cb..27cf7d94 100644
--- a/context_test.go
+++ b/context_test.go
@@ -26,7 +26,7 @@ func TestEnvGetsUpdatedEnvironment(t *testing.T) {
}
func TestCreateContext(t *testing.T) {
- ctx := context.TODO()
+ ctx := context.Background()
c, err := createTmplContext(ctx, nil, nil)
assert.NoError(t, err)
assert.Empty(t, c)