Browse Source

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

pull/713/head
Miguel Veloso 6 years ago
parent
commit
0733df5318
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      test/ServicesTests/Application.FunctionalTests/Services/Location/LocationsScenariosBase.cs

+ 1
- 1
test/ServicesTests/Application.FunctionalTests/Services/Location/LocationsScenariosBase.cs 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>();


Loading…
Cancel
Save