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 /picture_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 'picture_test.go')
-rw-r--r-- | picture_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/picture_test.go b/picture_test.go index 60c6ac1..3ac1afb 100644 --- a/picture_test.go +++ b/picture_test.go @@ -173,7 +173,7 @@ func TestGetPicture(t *testing.T) { } func TestAddDrawingPicture(t *testing.T) { - // testing addDrawingPicture with illegal cell coordinates. + // Test addDrawingPicture with illegal cell coordinates. f := NewFile() assert.EqualError(t, f.addDrawingPicture("sheet1", "", "A", "", 0, 0, 0, 0, nil), newCellNameToCoordinatesError("A", newInvalidCellNameError("A")).Error()) } |