test: fix test suite to understand pkg/ directory
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-09-05 21:39:12 +02:00
parent b7742d5e18
commit d82f854ebd
2 changed files with 3 additions and 3 deletions

View File

@ -8,8 +8,8 @@ import (
"testing"
)
var testFolder = os.ExpandEnv("$PWD/../tests/resources/test_folder")
var validAbraConf = os.ExpandEnv("$PWD/../tests/resources/valid_abra_config")
var testFolder = os.ExpandEnv("$PWD/../../tests/resources/test_folder")
var validAbraConf = os.ExpandEnv("$PWD/../../tests/resources/valid_abra_config")
// make sure these are in alphabetical order
var tFolders = []string{"folder1", "folder2"}