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)) +}