Skip to content

Commit

Permalink
Move skip to the point of failure
Browse files Browse the repository at this point in the history
  • Loading branch information
arjan-bal committed Jun 26, 2024
1 parent e8cd2bf commit 02fa7a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xds/internal/balancer/clusterimpl/tests/balancer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,6 @@ func (s) TestConfigUpdateWithSameLoadReportingServerConfig(t *testing.T) {
// TestLoadReportingPickFirstMultiLocality tests whether load is reported correctly
// when using pickfirst with endpoints in multiple localities.
func (s) TestLoadReportingPickFirstMultiLocality(t *testing.T) {
// TODO(#7339): Enable this test once pickfirst has one address per subconn.
t.Skip("Skipping due to issue #7339.")
originalTickerFactory := transport.TickerFactory
tickChan := make(chan time.Time)
transport.TickerFactory = func(freq time.Duration) (<-chan time.Time, func()) {
Expand Down Expand Up @@ -379,6 +377,8 @@ func (s) TestLoadReportingPickFirstMultiLocality(t *testing.T) {
}

if finalRegion == initialRegion {
// TODO(#7339): Enable this test once pickfirst has one address per subconn.
t.Skip("Skipping due to issue #7339.")
t.Errorf("Unexpected region received traffic: %q", finalRegion)
}
}

0 comments on commit 02fa7a4

Please sign in to comment.