From 7eb3c56fd49c5b2eb8127e7e2b9399a06f3ad816 Mon Sep 17 00:00:00 2001 From: stormcat24 Date: Sun, 19 Jun 2016 18:24:48 +0900 Subject: [PATCH] fix_test --- Makefile | 2 +- task/task_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7fcdc7a..555321d 100644 --- a/Makefile +++ b/Makefile @@ -38,7 +38,7 @@ $(TEST_TARGETS): test-%: GO15VENDOREXPERIMENT=1 go test -v -covermode=atomic -coverprofile=coverage.out $(GOTEST_FLAGS) $(BASE_PACKAGE)/$(*) GO15VENDOREXPERIMENT=1 go test -v -run=nonthing -benchmem -bench=".*" $(GOTEST_FLAGS) $(BASE_PACKAGE)/$(*) -ci-test: $(CI_TEST_TARGETS) +ci-test: $(TEST_TARGETS) $(CI_TEST_TARGETS): ci-test-%: @echo "**********************************************************" diff --git a/task/task_test.go b/task/task_test.go index a0f7741..e7e68d0 100644 --- a/task/task_test.go +++ b/task/task_test.go @@ -385,7 +385,7 @@ nginx: essential: true `, f.Name()) - taskdef, err := CreateTaskDefinition("test-web", yaml, filepath.Dir(f.Name())) + taskdef, err := CreateTaskDefinition("test-web", yaml, filepath.Dir(f.Name()), nil) if err != nil { t.Fatal(err) }