aboutsummaryrefslogtreecommitdiff
path: root/example_test.go
diff options
context:
space:
mode:
authorAlex Ogier <[email protected]>2012-05-04 17:00:49 -0400
committerAlex Ogier <[email protected]>2012-05-04 17:00:49 -0400
commit4d5822308c2a020a16a44fc0457578fc5b79b72b (patch)
tree4f331443281bb64e6f94e7f17904b6b85b527338 /example_test.go
parent123e81738a63da7f70f4b14c7d92586c9c317418 (diff)
Import the full github path in tests
Diffstat (limited to 'example_test.go')
-rw-r--r--example_test.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/example_test.go b/example_test.go
index f73e7cc..03ebeaa 100644
--- a/example_test.go
+++ b/example_test.go
@@ -7,10 +7,11 @@ package pflag_test
import (
"errors"
- flag "pflag"
"fmt"
"strings"
"time"
+
+ flag "github.com/ogier/pflag"
)
// Example 1: A single string flag called "species" with default value "gopher".