From 8851a42655a490b2afe5ec388ee596683d30a633 Mon Sep 17 00:00:00 2001 From: Angela Li Date: Mon, 22 Jul 2019 10:56:28 -0700 Subject: [PATCH] gofmt --- pkg/kubelet/winstats/winstats_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/kubelet/winstats/winstats_test.go b/pkg/kubelet/winstats/winstats_test.go index 18ae1f85bfc..45c33132c64 100644 --- a/pkg/kubelet/winstats/winstats_test.go +++ b/pkg/kubelet/winstats/winstats_test.go @@ -150,9 +150,9 @@ func TestConvertCPUValue(t *testing.T) { func TestGetCPUUsageNanoCores(t *testing.T) { testCases := []struct { - latestValue uint64 + latestValue uint64 previousValue uint64 - expected uint64 + expected uint64 }{ {latestValue: uint64(0), previousValue: uint64(0), expected: uint64(0)}, {latestValue: uint64(2000000000), previousValue: uint64(0), expected: uint64(200000000)},