From 8b69a13641e2ed1ba7cdf9f71688d51c88ff4e5f Mon Sep 17 00:00:00 2001 From: Tejal Desai Date: Thu, 6 Feb 2020 15:37:47 -0800 Subject: [PATCH] fix commut --- pkg/snapshot/snapshot_test.go | 4 ++-- pkg/util/tar_util.go | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkg/snapshot/snapshot_test.go b/pkg/snapshot/snapshot_test.go index d99e1e19a..4cf698c52 100644 --- a/pkg/snapshot/snapshot_test.go +++ b/pkg/snapshot/snapshot_test.go @@ -322,7 +322,7 @@ func TestSnasphotPreservesFileOrder(t *testing.T) { filesInTars := [][]string{} - for i := 0; i<= 2; i++ { + for i := 0; i <= 2; i++ { testDir, snapshotter, cleanup, err := setUpTest() testDirWithoutLeadingSlash := strings.TrimLeft(testDir, "/") defer cleanup() @@ -366,7 +366,7 @@ func TestSnasphotPreservesFileOrder(t *testing.T) { } // Check contents of all snapshots, make sure files appear in consistent order - for i := 1; i