summaryrefslogtreecommitdiff
path: root/rows_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 /rows_test.go
parentf9e9e5d2e07b087e2d4fb2487193aea8c240ab0e (diff)
change go module import path to github.com/xuri/excelize
Diffstat (limited to 'rows_test.go')
-rw-r--r--rows_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/rows_test.go b/rows_test.go
index e07ecf1..7682469 100644
--- a/rows_test.go
+++ b/rows_test.go
@@ -232,7 +232,7 @@ func TestRemoveRow(t *testing.T) {
)
fillCells(f, sheet1, colCount, rowCount)
- 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.EqualError(t, f.RemoveRow(sheet1, -1), "invalid row number -1")
@@ -293,7 +293,7 @@ func TestInsertRow(t *testing.T) {
)
fillCells(f, sheet1, colCount, rowCount)
- 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.EqualError(t, f.InsertRow(sheet1, -1), "invalid row number -1")