diff --git a/go/vt/vtorc/logic/tablet_discovery_test.go b/go/vt/vtorc/logic/tablet_discovery_test.go index 07bcad80cbb..ac7bc26bf86 100644 --- a/go/vt/vtorc/logic/tablet_discovery_test.go +++ b/go/vt/vtorc/logic/tablet_discovery_test.go @@ -139,6 +139,14 @@ func TestParseClustersToWatch(t *testing.T) { in: []string{"test/-"}, expected: map[string]bool{"test/-": true}, }, + { + in: []string{"test/-", "test2/-80", "test2/80-"}, + expected: map[string]bool{ + "test/-": true, + "test2/-80": true, + "test2/80-": true, + }, + }, { // confirm shards fetch from topo in: []string{keyspace},