diff options
author | xuri <xuri.me@gmail.com> | 2022-07-16 12:50:13 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2022-07-16 12:50:40 +0800 |
commit | 40ed1d1b81b4d30165bb73e9406e59ddbdb76fe2 (patch) | |
tree | 10bb74843b1272e7f9706959cd498ac70da25c70 /rows_test.go | |
parent | 6429588e1448f70539774a88840f094829cb9e07 (diff) |
Fix potential file corrupted when changing cell value or the col/row
- Remove shared formula subsequent cell when setting the cell values
- Support adjust table range when removing and inserting column/row
Diffstat (limited to 'rows_test.go')
-rw-r--r-- | rows_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rows_test.go b/rows_test.go index 014b2d8..4fe2851 100644 --- a/rows_test.go +++ b/rows_test.go @@ -322,7 +322,7 @@ func TestInsertRow(t *testing.T) { assert.NoError(t, f.SaveAs(filepath.Join("test", "TestInsertRow.xlsx"))) } -// Testing internal structure state after insert operations. It is important +// Test internal structure state after insert operations. It is important // for insert workflow to be constant to avoid side effect with functions // related to internal structure. func TestInsertRowInEmptyFile(t *testing.T) { |