Skip to content
This repository was archived by the owner on Oct 19, 2022. It is now read-only.

Commit 7c87bb1

Browse files
committed
Cleanup
1 parent b711d0e commit 7c87bb1

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

test/Stormpath.AspNetCore.TckHarness/Startup.cs

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
using Microsoft.Extensions.Configuration;
2121
using Microsoft.Extensions.DependencyInjection;
2222
using Microsoft.Extensions.Logging;
23+
using Stormpath.Configuration.Abstractions;
2324

2425
namespace Stormpath.AspNetCore.TestHarness
2526
{
@@ -41,12 +42,12 @@ public Startup(IHostingEnvironment env)
4142
public void ConfigureServices(IServiceCollection services)
4243
{
4344
// Add Stormpath services
44-
var stormpathConfiguration = new
45+
var stormpathConfiguration = new StormpathConfiguration()
4546
{
46-
application = new
47+
Application = new ApplicationConfiguration()
4748
{
48-
name = "My Application"
49-
}
49+
Name = "My Application"
50+
},
5051
};
5152
services.AddStormpath(stormpathConfiguration);
5253

0 commit comments

Comments
 (0)