Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Leung <[email protected]>
  • Loading branch information
rleungx committed Jan 9, 2025
1 parent 29de7b3 commit 00f2840
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/integrations/mcs/tso/api_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ func TestForwardOnlyTSONoScheduling(t *testing.T) {
re := require.New(t)
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
tc, err := tests.NewTestCluster(ctx, 1)
tc, err := tests.NewTestClusterWithKeyspaceGroup(ctx, 1)
defer tc.Destroy()
re.NoError(err)
err = tc.RunInitialServers()
Expand Down
2 changes: 1 addition & 1 deletion tests/integrations/mcs/tso/proxy_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ func (s *tsoProxyTestSuite) SetupSuite() {
var err error
s.ctx, s.cancel = context.WithCancel(context.Background())
// Create an PD cluster with 1 server
s.pdCluster, err = tests.NewTestCluster(s.ctx, 1)
s.pdCluster, err = tests.NewTestClusterWithKeyspaceGroup(s.ctx, 1)
re.NoError(err)
err = s.pdCluster.RunInitialServers()
re.NoError(err)
Expand Down

0 comments on commit 00f2840

Please sign in to comment.