From 0e02329bedf6648259fd219642bb907bdb07fd21 Mon Sep 17 00:00:00 2001 From: xuri Date: Sun, 4 Jul 2021 12:13:06 +0800 Subject: This closes #861, support concurrency get cell picture and remove unused internal function `getSheetNameByID` --- drawing_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'drawing_test.go') diff --git a/drawing_test.go b/drawing_test.go index 1ee8fae..3c0b619 100644 --- a/drawing_test.go +++ b/drawing_test.go @@ -12,12 +12,13 @@ package excelize import ( + "sync" "testing" ) func TestDrawingParser(t *testing.T) { f := File{ - Drawings: make(map[string]*xlsxWsDr), + Drawings: sync.Map{}, XLSX: map[string][]byte{ "charset": MacintoshCyrillicCharset, "wsDr": []byte(``)}, -- cgit v1.2.1