Skip to content

Commit

Permalink
docs: fix missing brackets and semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
naamor authored and BEagle1984 committed May 17, 2023
1 parent a4198f3 commit a59f3ec
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions docs/concepts/broker/testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public class KafkaTests
.ConsumeFrom("test-topic")
.Configure(config =>
{
config.GroupId = "my-test-consumer"
config.GroupId = "my-test-consumer";
})))
// Register the subscriber under test
.AddScopedSubscriber<MySubscriber>();
Expand Down Expand Up @@ -99,7 +99,7 @@ public class IntegrationTests : IClassFixture<WebApplicationFactory<Startup>>
// with the mocked version
services.UseMockedKafka();
});
};
});
}

[Fact]
Expand Down Expand Up @@ -138,7 +138,7 @@ public class IntegrationTests : IClassFixture<WebApplicationFactory<Startup>>
{
services.UseMockedKafka();
});
};
});
}

[Fact]
Expand Down Expand Up @@ -187,7 +187,7 @@ public class IntegrationTests : IClassFixture<WebApplicationFactory<Startup>>
.UseMockedKafka()
.AddIntegrationSpy();
});
};
});
}

[Fact]
Expand Down Expand Up @@ -241,6 +241,7 @@ public class IntegrationTests : IClassFixture<WebApplicationFactory<Startup>>
.UseMockedKafka(options => options
.WithDefaultPartitionsCount(10));
});
};
});
}
}
```

0 comments on commit a59f3ec

Please sign in to comment.