summaryrefslogtreecommitdiff
path: root/fpdf_test.go
diff options
context:
space:
mode:
authorKurt Jung <kurt.w.jung@gmail.com>2015-03-13 08:24:50 -0400
committerKurt Jung <kurt.w.jung@gmail.com>2015-03-13 08:24:50 -0400
commit377629e707b3132c5fc456c8b3792bfc3368d8a9 (patch)
tree174ef7ddbfbe42c79597165852847ea61f9fb70b /fpdf_test.go
parent5f8ef3772bf9215f5cd2bc82ab922497e27b58c4 (diff)
Adjust references to account for move from code.google.com to github
Diffstat (limited to 'fpdf_test.go')
-rw-r--r--fpdf_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/fpdf_test.go b/fpdf_test.go
index 123dcd0..0cf7ce0 100644
--- a/fpdf_test.go
+++ b/fpdf_test.go
@@ -18,8 +18,8 @@ package gofpdf_test
import (
"bufio"
- "code.google.com/p/gofpdf"
"fmt"
+ "github.com/jung-kurt/gofpdf"
"io/ioutil"
"math"
"net/http"
@@ -1128,7 +1128,7 @@ func ExampleFpdf_tutorial21() {
pdf.CellFormat(170, 257, rec.txt, borderStr, 0, rec.align, false, 0, linkStr)
borderStr = ""
}
- linkStr = "https://code.google.com/p/gofpdf/"
+ linkStr = "https://github.com/jung-kurt/gofpdf"
}
pdf.OutputAndClose(docWriter(pdf, 21))
// Output:
@@ -1297,7 +1297,7 @@ func ExampleFpdf_tutorial27() {
wd = 210
ht = 297
fontSize = 15
- urlStr = "https://code.google.com/p/gofpdf/logo?cct=1402750750"
+ urlStr = "https://github.com/jung-kurt/gofpdf/blob/master/image/gofpdf.png?raw=true"
msgStr = `Images from the web can be easily embedded when a PDF document is generated.`
)