summaryrefslogtreecommitdiff
path: root/excelize_test.go
diff options
context:
space:
mode:
authorRi Xu <xuri.me@gmail.com>2017-07-11 14:54:47 +0800
committerRi Xu <xuri.me@gmail.com>2017-07-11 14:54:47 +0800
commit20aae4e0e6e9d40a35a1d6ef6e3f357afdda0605 (patch)
tree024945588008cc3aa4f1e91ade661ded2a03da80 /excelize_test.go
parent1e20b20a0c9a7957d300a679bdcce69fb3b163b5 (diff)
Repo URI changed.
Diffstat (limited to 'excelize_test.go')
-rw-r--r--excelize_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/excelize_test.go b/excelize_test.go
index 534538d..0441c93 100644
--- a/excelize_test.go
+++ b/excelize_test.go
@@ -209,9 +209,9 @@ func TestSetCellHyperLink(t *testing.T) {
t.Log(err)
}
// Test set cell hyperlink in a work sheet already have hyperlinks.
- xlsx.SetCellHyperLink("sheet1", "B19", "https://github.com/Luxurioust/excelize")
+ xlsx.SetCellHyperLink("sheet1", "B19", "https://github.com/xuri/excelize")
// Test add first hyperlink in a work sheet.
- xlsx.SetCellHyperLink("sheet2", "C1", "https://github.com/Luxurioust/excelize")
+ xlsx.SetCellHyperLink("sheet2", "C1", "https://github.com/xuri/excelize")
err = xlsx.Save()
if err != nil {
t.Log(err)
@@ -274,7 +274,7 @@ func TestMergeCell(t *testing.T) {
xlsx.SetCellValue("Sheet1", "G11", "set value in merged cell")
xlsx.SetCellInt("Sheet1", "H11", 100)
xlsx.SetCellValue("Sheet1", "I11", float64(0.5))
- xlsx.SetCellHyperLink("Sheet1", "J11", "https://github.com/Luxurioust/excelize")
+ xlsx.SetCellHyperLink("Sheet1", "J11", "https://github.com/xuri/excelize")
xlsx.SetCellFormula("Sheet1", "G12", "SUM(Sheet1!B19,Sheet1!C19)")
xlsx.GetCellValue("Sheet1", "H11")
xlsx.GetCellFormula("Sheet1", "G12")