* Make test culture independent

This commit is contained in:
ryanbrandenburg 2016-01-05 09:45:10 -08:00
parent f3855b9cf2
commit 5b1beb68b5
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ namespace Microsoft.Extensions.Localization.Tests
});
var expected = includeParentCultures
? "No manifests exist for the current culture."
: "The manifest 'testington.en-US.resources' was not found.";
: $"The manifest 'testington.{CultureInfo.CurrentCulture}.resources' was not found.";
Assert.Equal(expected, exception.Message);
}