From a24dd2827c7fe0da9d97671fc07ec525af60a895 Mon Sep 17 00:00:00 2001 From: Fenny <25108519+Fenny@users.noreply.github.com> Date: Fri, 27 Nov 2020 15:04:09 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9=20fix=20test?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- arangodb/arangodb_test.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/arangodb/arangodb_test.go b/arangodb/arangodb_test.go index c65b5751..6f15d284 100644 --- a/arangodb/arangodb_test.go +++ b/arangodb/arangodb_test.go @@ -1,14 +1,15 @@ package arangodb import ( - "github.com/gofiber/utils" "os" "testing" "time" + + "github.com/gofiber/utils" ) var testStore = New(Config{ - Host: os.Getenv("ARANGODB_HOST"), + Database: os.Getenv("ARANGODB_DATABASE"), Username: os.Getenv("ARANGODB_USERNAME"), Password: os.Getenv("ARANGODB_PASSWORD"), Reset: true,