From ada5423e7ed6b7febb92795b463444066484bd22 Mon Sep 17 00:00:00 2001 From: Oliver Tonnhofer Date: Wed, 27 Apr 2016 09:45:07 +0200 Subject: [PATCH] fix running system tests without godep --- test/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Makefile b/test/Makefile index fa6e637..5e94683 100644 --- a/test/Makefile +++ b/test/Makefile @@ -25,7 +25,7 @@ build/%.osc.gz: %.osc files: $(PBF_FILES) $(OSCGZ_FILES) test: files - (cd .. && godep go test ./test $(TESTOPTS)) + (cd .. && go test ./test $(TESTOPTS)) route_relation: files - (cd .. && godep go test -test.run TestRouteRelation_ ./test $(TESTOPTS)) + (cd .. && go test -test.run TestRouteRelation_ ./test $(TESTOPTS))