From d3a19487637c814552b356c5876b9c94a8be9cf5 Mon Sep 17 00:00:00 2001 From: "Matthew D. Groves" Date: Wed, 15 Nov 2023 14:49:36 -0500 Subject: [PATCH] key needs to be longer here too --- .../Integration/Articles/Handlers/GetArticleHandlerTests.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Conduit/Conduit.Tests/Integration/Articles/Handlers/GetArticleHandlerTests.cs b/Conduit/Conduit.Tests/Integration/Articles/Handlers/GetArticleHandlerTests.cs index a01e33bdc6..f17583e161 100644 --- a/Conduit/Conduit.Tests/Integration/Articles/Handlers/GetArticleHandlerTests.cs +++ b/Conduit/Conduit.Tests/Integration/Articles/Handlers/GetArticleHandlerTests.cs @@ -20,7 +20,6 @@ public class GetArticleHandlerTests : CouchbaseIntegrationTest private AuthService _authService; private UserDataService _userDataService; private FollowsDataService _followDataService; - private Random _random; public override async Task Setup() { @@ -36,14 +35,13 @@ public override async Task Setup() { Audience = "dummy-audience", Issuer = "dummy-issuer", - SecurityKey = "dummy-securitykey" + SecurityKey = "dummy-securitykey-dummy-securitykey-dummy-securitykey-dummy-securitykey" }; _authService = new AuthService(new OptionsWrapper(jwtSecrets)); _articleDataService = new ArticlesDataService(_articleCollectionProvider, _favoriteCollectionProvider); _followDataService = new FollowsDataService(_followsCollectionProvider); _userDataService = new UserDataService(_usersCollectionProvider, _authService); _handler = new GetArticleHandler(_articleDataService, _userDataService, _followDataService); - _random = new Random(); } [Test]