DiUS / pact-workshop-dotnet-core-v3

Apache License 2.0
24 stars 24 forks source link

Step 10 - Incorrect filename #4

Open hwilliams-bod opened 2 years ago

hwilliams-bod commented 2 years ago

Then wire the new middleware in Provider/tests/Middleware/AuthTokenRequestFilter.cs //Should be Provider\tests\TestStartup.cs

// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
    app.UseMiddleware<ProviderStateMiddleware>();
    app.UseMiddleware<AuthTokenRequestFilter>();
    _proxy.Configure(app, env);
}