diff options
Diffstat (limited to 'col_test.go')
-rw-r--r-- | col_test.go | 4 |
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")) |