From 45dbdee3ddb51dc06534d2956b2f996bae69d072 Mon Sep 17 00:00:00 2001 From: Matt Dale <9760375+matthewdale@users.noreply.github.com> Date: Wed, 2 Nov 2022 12:21:58 -0700 Subject: [PATCH] Use correct test database. --- cmd/testentauth/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/testentauth/main.go b/cmd/testentauth/main.go index 453b6b25da..3705623b9b 100644 --- a/cmd/testentauth/main.go +++ b/cmd/testentauth/main.go @@ -27,7 +27,7 @@ func main() { log.Fatal(err) } - coll := client.Database("test").Collection("test") + coll := client.Database("kerberos").Collection("test") ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second) defer cancel()