From 437616acb78e7997ced5a22475c80d6bfe7c0f87 Mon Sep 17 00:00:00 2001 From: Travis Reeder Date: Wed, 26 Jul 2017 11:19:18 -0700 Subject: [PATCH] Fix tests --- fnlb/main.go | 2 +- test.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fnlb/main.go b/fnlb/main.go index 7b0a702fa..22c176ba9 100644 --- a/fnlb/main.go +++ b/fnlb/main.go @@ -14,7 +14,7 @@ import ( "time" "github.com/Sirupsen/logrus" - "github.com/fnproject/fn/clilb/lb" + "github.com/fnproject/fn/fnlb/lb" ) const VERSION = "0.0.1" diff --git a/test.sh b/test.sh index 00d091e13..54f9dfe95 100755 --- a/test.sh +++ b/test.sh @@ -35,7 +35,7 @@ container_ip) ;; esac -go test -v $(go list ./... | grep -v vendor | grep -v examples | grep -v tool | grep -v fn| grep -v tmp/go/src) +go test -v $(go list ./... | grep -v vendor | grep -v examples | grep -v tool | grep -v cli | grep -v tmp/go/src) # go test -v github.com/fnproject/fn/api/runner/drivers/docker cd cli && make build && make test