summaryrefslogtreecommitdiff
path: root/picture_test.go
diff options
context:
space:
mode:
authorxuri <xuri.me@gmail.com>2022-07-16 12:50:13 +0800
committerxuri <xuri.me@gmail.com>2022-07-16 12:50:40 +0800
commit40ed1d1b81b4d30165bb73e9406e59ddbdb76fe2 (patch)
tree10bb74843b1272e7f9706959cd498ac70da25c70 /picture_test.go
parent6429588e1448f70539774a88840f094829cb9e07 (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.go2
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())
}