Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcel0024 committed Jul 11, 2024
1 parent b9b046a commit 67fa8c5
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
using WireMock.ResponseBuilders;
using WireMock.Server;

namespace CocoCrawler.IntegrationTests.VisitedUrlTracker;
namespace CocoCrawler.IntegrationTests.ConfigureEngine;

[Collection(nameof(BrowserCollection))]
public class VisitedLinks
{
private readonly WireMockServer _wireMockServer = WireMockServer.Start();
Expand Down Expand Up @@ -64,7 +65,7 @@ public async Task VisitedLinks_ShouldBePersisted_WithPersistVisitedUrls()

private static void SetUrls(WireMockServer wireMockServer)
{
foreach(var index in Enumerable.Range(0, 31))
foreach (var index in Enumerable.Range(0, 31))
{
wireMockServer.Given(Request.Create().WithUrl($"{wireMockServer.Url}/main-page-{index}"))
.RespondWith(Response.Create()
Expand Down

0 comments on commit 67fa8c5

Please sign in to comment.