summaryrefslogtreecommitdiff
path: root/col_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 /col_test.go
parentf9e9e5d2e07b087e2d4fb2487193aea8c240ab0e (diff)
change go module import path to github.com/xuri/excelize
Diffstat (limited to 'col_test.go')
-rw-r--r--col_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/col_test.go b/col_test.go
index 58f424b..b19eadf 100644
--- a/col_test.go
+++ b/col_test.go
@@ -338,7 +338,7 @@ func TestInsertCol(t *testing.T) {
fillCells(f, sheet1, 10, 10)
- assert.NoError(t, f.SetCellHyperLink(sheet1, "A5", "https://github.com/360EntSecGroup-Skylar/excelize", "External"))
+ assert.NoError(t, f.SetCellHyperLink(sheet1, "A5", "https://github.com/xuri/excelize", "External"))
assert.NoError(t, f.MergeCell(sheet1, "A1", "C3"))
assert.NoError(t, f.AutoFilter(sheet1, "A2", "B2", `{"column":"B","expression":"x != blanks"}`))
@@ -356,7 +356,7 @@ func TestRemoveCol(t *testing.T) {
fillCells(f, sheet1, 10, 15)
- assert.NoError(t, f.SetCellHyperLink(sheet1, "A5", "https://github.com/360EntSecGroup-Skylar/excelize", "External"))
+ assert.NoError(t, f.SetCellHyperLink(sheet1, "A5", "https://github.com/xuri/excelize", "External"))
assert.NoError(t, f.SetCellHyperLink(sheet1, "C5", "https://github.com", "External"))
assert.NoError(t, f.MergeCell(sheet1, "A1", "B1"))