From 539a413e1ef1aaf333e70e976721abe9d14dd27c Mon Sep 17 00:00:00 2001 From: Nicolas Mahe Date: Sun, 19 May 2019 17:14:59 +0700 Subject: [PATCH] replace github tarball url to git with branch --- api/deploy_test.go | 2 +- interface/grpc/core/core_test.go | 2 +- interface/grpc/core/deploy_integration_test.go | 2 +- interface/grpc/core/deploy_test.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/api/deploy_test.go b/api/deploy_test.go index 5f8430122..b05451908 100644 --- a/api/deploy_test.go +++ b/api/deploy_test.go @@ -168,7 +168,7 @@ func TestDeployInvalidService(t *testing.T) { func TestDeployServiceFromURL(t *testing.T) { var ( - url = "https://github.com/mesg-foundation/service-webhook/tarball/single-outputs" + url = "git://github.com/mesg-foundation/service-webhook#single-outputs" a, at = newTesting(t) ) defer at.close() diff --git a/interface/grpc/core/core_test.go b/interface/grpc/core/core_test.go index 2d1eeef82..5143c5175 100644 --- a/interface/grpc/core/core_test.go +++ b/interface/grpc/core/core_test.go @@ -30,7 +30,7 @@ func TestGetService(t *testing.T) { } func TestListServices(t *testing.T) { - url := "https://github.com/mesg-foundation/service-webhook/tarball/single-outputs" + url := "git://github.com/mesg-foundation/service-webhook#single-outputs" server, closer := newServer(t) defer closer() diff --git a/interface/grpc/core/deploy_integration_test.go b/interface/grpc/core/deploy_integration_test.go index 016005dd4..b7b72fb92 100644 --- a/interface/grpc/core/deploy_integration_test.go +++ b/interface/grpc/core/deploy_integration_test.go @@ -10,7 +10,7 @@ import ( ) func TestIntegrationDeployService(t *testing.T) { - url := "https://github.com/mesg-foundation/service-webhook/tarball/single-outputs" + url := "git://github.com/mesg-foundation/service-webhook#single-outputs" server, closer := newServer(t) defer closer() diff --git a/interface/grpc/core/deploy_test.go b/interface/grpc/core/deploy_test.go index 0a1523c37..92d3d7061 100644 --- a/interface/grpc/core/deploy_test.go +++ b/interface/grpc/core/deploy_test.go @@ -12,7 +12,7 @@ import ( ) func TestDeployService(t *testing.T) { - url := "https://github.com/mesg-foundation/service-webhook/tarball/single-outputs" + url := "git://github.com/mesg-foundation/service-webhook#single-outputs" server, dt, closer := newServerAndDockerTest(t) defer closer()