From 25de1bd9eedfc3bac91552563c86a35a0504acdb Mon Sep 17 00:00:00 2001 From: Tim Vaillancourt Date: Wed, 25 Sep 2024 02:09:24 +0200 Subject: [PATCH] fix newline Signed-off-by: Tim Vaillancourt --- go/vt/vttablet/tabletmanager/tm_init_test.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/go/vt/vttablet/tabletmanager/tm_init_test.go b/go/vt/vttablet/tabletmanager/tm_init_test.go index 74f9effe025..91e07ab435e 100644 --- a/go/vt/vttablet/tabletmanager/tm_init_test.go +++ b/go/vt/vttablet/tabletmanager/tm_init_test.go @@ -651,8 +651,8 @@ func TestGetBuildTags(t *testing.T) { func TestStartExportStats(t *testing.T) { ctx, cancel := context.WithCancel(context.Background()) defer cancel() - ts := memorytopo.NewServer(ctx, "cell1") + ts := memorytopo.NewServer(ctx, "cell1") _ = newTestTM(t, ts, 1, "ks", "0", map[string]string{ "test": t.Name(), }) @@ -667,7 +667,6 @@ func TestStartExportStats(t *testing.T) { assert.Equal(t, map[string]int64{ "test." + t.Name(): 1, }, statsTabletTags.Counts()) - } func newTestMysqlDaemon(t *testing.T, port int32) *mysqlctl.FakeMysqlDaemon {