diff options
author | crupest <crupest@outlook.com> | 2021-01-05 00:26:43 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-01-05 00:26:43 +0800 |
commit | 9470631c67c4740982ff2d8a16cbbb86fdd34609 (patch) | |
tree | 209a2700fc1450281dc78452eea8397444582e3f /BackEnd/Timeline.Tests/Helpers/TestApplication.cs | |
parent | 20e9136a9f27a0b77f076ea5997b71d89ce3cfca (diff) | |
download | timeline-9470631c67c4740982ff2d8a16cbbb86fdd34609.tar.gz timeline-9470631c67c4740982ff2d8a16cbbb86fdd34609.tar.bz2 timeline-9470631c67c4740982ff2d8a16cbbb86fdd34609.zip |
refactor: Refactor front end mode configuration.
Diffstat (limited to 'BackEnd/Timeline.Tests/Helpers/TestApplication.cs')
-rw-r--r-- | BackEnd/Timeline.Tests/Helpers/TestApplication.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BackEnd/Timeline.Tests/Helpers/TestApplication.cs b/BackEnd/Timeline.Tests/Helpers/TestApplication.cs index da8dea46..22f5f006 100644 --- a/BackEnd/Timeline.Tests/Helpers/TestApplication.cs +++ b/BackEnd/Timeline.Tests/Helpers/TestApplication.cs @@ -38,7 +38,7 @@ namespace Timeline.Tests.Helpers {
config.AddInMemoryCollection(new Dictionary<string, string>
{
- [ApplicationConfiguration.UseMockFrontEndKey] = "true",
+ [ApplicationConfiguration.FrontEndKey] = "Mock",
["WorkDir"] = WorkDir
});
})
|