From bc911f05c1290b4de5ff95610c6dc072fc88efba Mon Sep 17 00:00:00 2001 From: Marcus Downing Date: Sat, 5 Sep 2015 16:32:29 +0100 Subject: Windows testing 2 --- fpdf_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'fpdf_test.go') diff --git a/fpdf_test.go b/fpdf_test.go index 0af3556..ff8c5da 100644 --- a/fpdf_test.go +++ b/fpdf_test.go @@ -1055,12 +1055,12 @@ func ExampleFpdf_RegisterImage() { info := pdf.GetImageInfo(imageStr) if info != nil { if info.Width() > 0.0 { - fmt.Printf("Image %s is registered\n", imageStr) + fmt.Printf("Image %s is registered\n", filepath.ToSlash(imageStr)) } else { - fmt.Printf("Incorrect information for image %s\n", imageStr) + fmt.Printf("Incorrect information for image %s\n", filepath.ToSlash(imageStr)) } } else { - fmt.Printf("Image %s is not registered\n", imageStr) + fmt.Printf("Image %s is not registered\n", filepath.ToSlash(imageStr)) } } infoShow(fileList[0]) -- cgit v1.2.1-24-ge1ad