Skip to content

Commit

Permalink
update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fzhedu committed Dec 17, 2021
1 parent ecdc7ab commit 9563c99
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions executor/aggregate_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ import (
"sort"
"strconv"
"strings"
"testing"
"time"

. "github.com/pingcap/check"
Expand Down Expand Up @@ -1452,11 +1451,8 @@ func (s *testSuiteAgg) TestIssue23277(c *C) {
tk.MustExec("drop table t;")
}

func TestAvgDecimal(t *testing.T) {
t.Parallel()
store, clean := testkit.CreateMockStore(t)
defer clean()
tk := testkit.NewTestKit(t, store)
func (s *testSuiteAgg) TestAvgDecimal(c *C) {
tk := testkit.NewTestKitWithInit(c, s.store)
tk.MustExec("use test;")
tk.MustExec("drop table if exists td;")
tk.MustExec("create table td (col_bigint bigint(20), col_smallint smallint(6));")
Expand Down

0 comments on commit 9563c99

Please sign in to comment.