From a59f3ecec8a36a26c931ff97c92ad7846a72f2cb Mon Sep 17 00:00:00 2001 From: naamor Date: Wed, 17 May 2023 09:14:27 +0200 Subject: [PATCH] docs: fix missing brackets and semicolon --- docs/concepts/broker/testing.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) 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)); }); - }; + }); } } +```