Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

planner: enforce push mpp down #24849

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix test
  • Loading branch information
LittleFall committed May 23, 2021
commit fa032e2f836453772aa5281949198086d6335da8
6 changes: 3 additions & 3 deletions planner/core/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ type testIntegrationSuite struct {
}

func (s *testIntegrationSuite) SetUpSuite(c *C) {
//var err error
s.testData, _ = testutil.LoadTestSuiteData("testdata", "integration_suite")
//c.Assert(err, IsNil)
var err error
s.testData, err = testutil.LoadTestSuiteData("testdata", "integration_suite")
c.Assert(err, IsNil)
}

func (s *testIntegrationSuite) TearDownSuite(c *C) {
Expand Down