diff --git a/docs/concepts/broker/testing.md b/docs/concepts/broker/testing.md index 58004004c..8034560f9 100644 --- a/docs/concepts/broker/testing.md +++ b/docs/concepts/broker/testing.md @@ -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(); @@ -99,7 +99,7 @@ public class IntegrationTests : IClassFixture> // with the mocked version services.UseMockedKafka(); }); - }; + }); } [Fact] @@ -138,7 +138,7 @@ public class IntegrationTests : IClassFixture> { services.UseMockedKafka(); }); - }; + }); } [Fact] @@ -187,7 +187,7 @@ public class IntegrationTests : IClassFixture> .UseMockedKafka() .AddIntegrationSpy(); }); - }; + }); } [Fact] @@ -241,6 +241,7 @@ public class IntegrationTests : IClassFixture> .UseMockedKafka(options => options .WithDefaultPartitionsCount(10)); }); - }; + }); } } +```