From 26f64b154e3e3a40f8c809ea0a75c31230834c1b Mon Sep 17 00:00:00 2001 From: Ziya Suzen Date: Sun, 3 Nov 2024 12:22:34 +0000 Subject: [PATCH] Remove unused test params --- tests/NATS.Client.CoreUnit.Tests/OptsUrlTests.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/NATS.Client.CoreUnit.Tests/OptsUrlTests.cs b/tests/NATS.Client.CoreUnit.Tests/OptsUrlTests.cs index 397d3e720..e4144d179 100644 --- a/tests/NATS.Client.CoreUnit.Tests/OptsUrlTests.cs +++ b/tests/NATS.Client.CoreUnit.Tests/OptsUrlTests.cs @@ -47,9 +47,9 @@ public void URL_parts(string url, string expected, string? user, string? pass, s } [Theory] - [InlineData("u:p@host1:1234", "nats://u:***@host1:1234", "u", "p", null)] - [InlineData("t@host1:1234", "nats://***@host1:1234", null, null, "t")] - public void URL_should_not_override_auth_options(string url, string expected, string? user, string? pass, string? token) + [InlineData("u:p@host1:1234", "nats://u:***@host1:1234")] + [InlineData("t@host1:1234", "nats://***@host1:1234")] + public void URL_should_not_override_auth_options(string url, string expected) { var opts = new NatsConnection(new NatsOpts {