From 7ca86444e8a8c42f1a87d6fa093d6f9fc5d50230 Mon Sep 17 00:00:00 2001 From: Josh Mervine Date: Tue, 17 Jun 2014 22:28:33 -0700 Subject: [PATCH] making all pathing for cli local in tests for easier fork testing --- cli_test.go | 2 +- command_test.go | 2 +- context_test.go | 2 +- flag_test.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cli_test.go b/cli_test.go index 30f3c13..ec800f7 100644 --- a/cli_test.go +++ b/cli_test.go @@ -1,7 +1,7 @@ package cli_test import ( - "github.com/codegangsta/cli" + "." "os" ) diff --git a/command_test.go b/command_test.go index 3afd83e..7c94322 100644 --- a/command_test.go +++ b/command_test.go @@ -2,7 +2,7 @@ package cli_test import ( "flag" - "github.com/codegangsta/cli" + "." "testing" ) diff --git a/context_test.go b/context_test.go index 89041b9..25b543c 100644 --- a/context_test.go +++ b/context_test.go @@ -2,7 +2,7 @@ package cli_test import ( "flag" - "github.com/codegangsta/cli" + "." "testing" ) diff --git a/flag_test.go b/flag_test.go index 1c05f01..8a98f99 100644 --- a/flag_test.go +++ b/flag_test.go @@ -1,7 +1,7 @@ package cli_test import ( - "github.com/codegangsta/cli" + "." "fmt" "reflect"