0
FlexSolution created
3 Answer(s)
-
0
Visual Studio language should not affect application language.
Did you change the default application language? If so, you should update the test in your project.
-
0
I changed the language over the UI but I reset it and it's still the same error. I also took a completely new project, didn't change anything and it's still the same bug. It's no problem for me to change the message I just wanted to let you know.
-
0
Modify the AppTestBase constructor according to the following code and then take a unit test to see.
protected AppTestBase() { CultureInfo.CurrentCulture = new CultureInfo("en"); CultureInfo.CurrentUICulture = new CultureInfo("en"); SeedTestData(); LoginAsDefaultTenantAdmin(); }