summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--fpdf_test.go4
-rw-r--r--ttfparser_test.go2
2 files changed, 3 insertions, 3 deletions
diff --git a/fpdf_test.go b/fpdf_test.go
index 7d862fa..09f4d39 100644
--- a/fpdf_test.go
+++ b/fpdf_test.go
@@ -32,8 +32,8 @@ import (
"time"
"github.com/jung-kurt/gofpdf"
- "../gofpdf/internal/example"
- "../gofpdf/internal/files"
+ "github.com/jung-kurt/gofpdf/internal/example"
+ "github.com/jung-kurt/gofpdf/internal/files"
)
func init() {
diff --git a/ttfparser_test.go b/ttfparser_test.go
index 5aaf244..3286db2 100644
--- a/ttfparser_test.go
+++ b/ttfparser_test.go
@@ -21,7 +21,7 @@ import (
"fmt"
"github.com/jung-kurt/gofpdf"
- "../gofpdf/internal/example"
+ "github.com/jung-kurt/gofpdf/internal/example"
)
func ExampleTtfParse() {