diff --git a/src/BuildingBlocks/TestBase/TestBase.cs b/src/BuildingBlocks/TestBase/TestBase.cs index 178fce4..5737503 100644 --- a/src/BuildingBlocks/TestBase/TestBase.cs +++ b/src/BuildingBlocks/TestBase/TestBase.cs @@ -60,7 +60,9 @@ public class TestFixture : IAsyncLifetime var claims = new Dictionary { - { ClaimTypes.Name, "test@sample.com" }, { ClaimTypes.Role, "admin" }, + { ClaimTypes.Name, "test@sample.com" }, + { ClaimTypes.Role, "admin" }, + {"scope", "flight-api"} }; var httpClient = _factory?.CreateClient(); httpClient.SetFakeBearerToken(claims);