From 81c46b4ae47c574240abb41014a7b8fec0132593 Mon Sep 17 00:00:00 2001 From: William Kennedy Date: Wed, 19 Aug 2015 13:09:01 +0100 Subject: [PATCH] Update examples_test.go This is better. We can't use relative paths for imports. If you can get this change in, it will help with my talk at GolangUK on Friday. --- examples_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples_test.go b/examples_test.go index 9d01450..f2dad92 100644 --- a/examples_test.go +++ b/examples_test.go @@ -3,7 +3,7 @@ package validator_test import ( "fmt" - "../validator" + "gopkg.in/bluesuncorp/validator.v6" ) func ExampleValidate_new() {