Funtional test failling because it didn't find appsettings path, assuming the current folder name is the correct one.

This commit is contained in:
Miguel Veloso 2018-07-27 10:23:53 +01:00
parent c3983b30c7
commit 0733df5318

View File

@ -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<LocationsTestsStartup>();