Skip to content

Commit

Permalink
Fix partial match test
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Vaillancourt <[email protected]>
  • Loading branch information
timvaillancourt committed Jun 1, 2024
1 parent 55aa9e4 commit 2f7a0a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/vt/discovery/topology_watcher_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ func TestNewFilterByTabletTags(t *testing.T) {
assert.False(t, filter.IsIncluded(&topodatapb.Tablet{
Tags: map[string]string{},
}))
assert.True(t, filter.IsIncluded(&topodatapb.Tablet{
assert.False(t, filter.IsIncluded(&topodatapb.Tablet{
Tags: map[string]string{
"instance_type": "i3.xlarge",
},
Expand Down

0 comments on commit 2f7a0a1

Please sign in to comment.