From efcf599dfe2ec25f10c4d55513a5648addfe989b Mon Sep 17 00:00:00 2001 From: xuri Date: Wed, 28 Sep 2022 00:04:17 +0800 Subject: This closes #1360, closes #1361 - Fix default number format parse issue with a long string of digits - Fix creating a sheet with an empty name cause a corrupted file - The `GetCellStyle` function no longer return master cell style of the merge cell range - Using the specialized name in variables and functions --- rows_test.go | 4 ---- 1 file changed, 4 deletions(-) (limited to 'rows_test.go') diff --git a/rows_test.go b/rows_test.go index d51e256..8ce007f 100644 --- a/rows_test.go +++ b/rows_test.go @@ -995,10 +995,6 @@ func TestNumberFormats(t *testing.T) { assert.NoError(t, f.Close()) } -func TestRoundPrecision(t *testing.T) { - assert.Equal(t, "text", roundPrecision("text", 0)) -} - func BenchmarkRows(b *testing.B) { f, _ := OpenFile(filepath.Join("test", "Book1.xlsx")) for i := 0; i < b.N; i++ { -- cgit v1.2.1