From 17eaeabdf987b544dfe2a4b64c6b5f89290c67a8 Mon Sep 17 00:00:00 2001 From: Clement Michaud Date: Sat, 30 Nov 2019 15:27:39 +0100 Subject: [PATCH] Remove the test directory at the root of the repo. --- internal/configuration/reader_test.go | 2 +- .../configuration/test_resources}/config.yml | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename {test/resources => internal/configuration/test_resources}/config.yml (100%) diff --git a/internal/configuration/reader_test.go b/internal/configuration/reader_test.go index 0f7afe597..e401d9c8e 100644 --- a/internal/configuration/reader_test.go +++ b/internal/configuration/reader_test.go @@ -7,7 +7,7 @@ import ( ) func TestShouldParseConfigFile(t *testing.T) { - config, errors := Read("../../test/resources/config.yml") + config, errors := Read("./test_resources/config.yml") assert.Len(t, errors, 0) diff --git a/test/resources/config.yml b/internal/configuration/test_resources/config.yml similarity index 100% rename from test/resources/config.yml rename to internal/configuration/test_resources/config.yml