From faa83c707a1f79dab2612c5c56ff0617073f7b91 Mon Sep 17 00:00:00 2001 From: Brandon Liu Date: Sun, 15 Sep 2024 15:51:00 +0800 Subject: [PATCH] fmt --- pmtiles/upload_test.go | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pmtiles/upload_test.go b/pmtiles/upload_test.go index 83df02b..4e0da4a 100644 --- a/pmtiles/upload_test.go +++ b/pmtiles/upload_test.go @@ -1,12 +1,11 @@ package pmtiles import ( - "testing" "github.com/stretchr/testify/assert" + "testing" ) - func TestPartSizeBytes(t *testing.T) { - assert.Equal(t, 5 * 1024 * 1024, partSizeBytes(100)) - assert.Equal(t, 6442451, partSizeBytes(60 * 1024 * 1024 * 1024)) -} \ No newline at end of file + assert.Equal(t, 5*1024*1024, partSizeBytes(100)) + assert.Equal(t, 6442451, partSizeBytes(60*1024*1024*1024)) +}