summaryrefslogtreecommitdiff
path: root/cell_test.go
diff options
context:
space:
mode:
authorxuri <xuri.me@gmail.com>2021-07-28 00:38:09 +0800
committerxuri <xuri.me@gmail.com>2021-07-28 00:38:09 +0800
commite9ae9b45b20a5df7e3aa15afcfac83ecb13394c6 (patch)
treee744a0eaf7a16e03f4cc8480cc20b3c95126c39d /cell_test.go
parentf9e9e5d2e07b087e2d4fb2487193aea8c240ab0e (diff)
change go module import path to github.com/xuri/excelize
Diffstat (limited to 'cell_test.go')
-rw-r--r--cell_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cell_test.go b/cell_test.go
index f11c708..ea62869 100644
--- a/cell_test.go
+++ b/cell_test.go
@@ -41,7 +41,7 @@ func TestConcurrency(t *testing.T) {
assert.NoError(t, f.SetCellStyle("Sheet1", "A3", "A3", style))
// Concurrency add picture
assert.NoError(t, f.AddPicture("Sheet1", "F21", filepath.Join("test", "images", "excel.jpg"),
- `{"x_offset": 10, "y_offset": 10, "hyperlink": "https://github.com/360EntSecGroup-Skylar/excelize", "hyperlink_type": "External", "positioning": "oneCell"}`))
+ `{"x_offset": 10, "y_offset": 10, "hyperlink": "https://github.com/xuri/excelize", "hyperlink_type": "External", "positioning": "oneCell"}`))
// Concurrency get cell picture
name, raw, err := f.GetPicture("Sheet1", "A1")
assert.Equal(t, "", name)