Skip to content

Commit

Permalink
hi
Browse files Browse the repository at this point in the history
  • Loading branch information
lkysow committed Nov 3, 2023
1 parent e048e52 commit f51bbb3
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions dependency/health_service_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,21 @@ func TestNewHealthServiceQuery(t *testing.T) {
i: "name?unsupported=test",
err: true,
},
{
"query other parameters",
"tag.name?peer=foo&ns=bar&partition=baz@dc2~near",
&HealthServiceQuery{
filters: []string{"passing"},
tag: "tag",
name: "name",
dc: "dc2",
near: "near",
peer: "foo",
namespace: "bar",
partition: "baz",
},
false,
},
}

for i, tc := range cases {
Expand Down

0 comments on commit f51bbb3

Please sign in to comment.