From 0733df5318cfe7f62ab9a5894a140aee0470c485 Mon Sep 17 00:00:00 2001 From: Miguel Veloso Date: Fri, 27 Jul 2018 10:23:53 +0100 Subject: [PATCH] Funtional test failling because it didn't find appsettings path, assuming the current folder name is the correct one. --- .../Services/Location/LocationsScenariosBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/ServicesTests/Application.FunctionalTests/Services/Location/LocationsScenariosBase.cs b/test/ServicesTests/Application.FunctionalTests/Services/Location/LocationsScenariosBase.cs index 334f3f024..4c3bd1b29 100644 --- a/test/ServicesTests/Application.FunctionalTests/Services/Location/LocationsScenariosBase.cs +++ b/test/ServicesTests/Application.FunctionalTests/Services/Location/LocationsScenariosBase.cs @@ -19,7 +19,7 @@ .UseContentRoot(Path.GetDirectoryName(path)) .ConfigureAppConfiguration(cb => { - cb.AddJsonFile("Services/Locations/appsettings.json", optional: false) + cb.AddJsonFile("Services/Location/appsettings.json", optional: false) .AddEnvironmentVariables(); }).UseStartup();