From f5aeda12837ff3d8661d3857b3a09091279cb103 Mon Sep 17 00:00:00 2001 From: Lakhan Samani Date: Tue, 11 Jan 2022 19:38:20 +0530 Subject: [PATCH] Update arangodb test connection string --- server/__test__/resolvers_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/__test__/resolvers_test.go b/server/__test__/resolvers_test.go index 160265c..7eb73d5 100644 --- a/server/__test__/resolvers_test.go +++ b/server/__test__/resolvers_test.go @@ -11,7 +11,7 @@ import ( func TestResolvers(t *testing.T) { databases := map[string]string{ enum.Sqlite.String(): "../../data.db", - enum.Arangodb.String(): "http://root:root@localhost:8529", + enum.Arangodb.String(): "http://localhost:8529", enum.Mongodb.String(): "mongodb://localhost:27017", }