Skip to content

Commit

Permalink
Remove unused test params
Browse files Browse the repository at this point in the history
  • Loading branch information
mtmk committed Nov 3, 2024
1 parent ee3adf7 commit 26f64b1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/NATS.Client.CoreUnit.Tests/OptsUrlTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down

0 comments on commit 26f64b1

Please sign in to comment.