From 61f1ea4692a839492e907090d24ff56bb7dcf0c0 Mon Sep 17 00:00:00 2001 From: Andre Hofmeister <9199345+HofmeisterAn@users.noreply.github.com> Date: Mon, 2 Mar 2026 20:33:15 +0100 Subject: [PATCH] fix(Seq): Assert GetConnectionString() --- tests/Testcontainers.Seq.Tests/SeqContainerTest.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/Testcontainers.Seq.Tests/SeqContainerTest.cs b/tests/Testcontainers.Seq.Tests/SeqContainerTest.cs index 069a3f716..da2d0edee 100644 --- a/tests/Testcontainers.Seq.Tests/SeqContainerTest.cs +++ b/tests/Testcontainers.Seq.Tests/SeqContainerTest.cs @@ -42,5 +42,6 @@ public async Task LogsMessageToSeq() // Then Assert.Single(events); Assert.Equal(helloWorld, events[0].MessageTemplateTokens.Last().Text); + Assert.Equal(_seqContainer.GetEndpoint(), _seqContainer.GetConnectionString()); } } \ No newline at end of file