From ca97b263dafc65f0e3a08050f49b184d8d05f6f0 Mon Sep 17 00:00:00 2001 From: Anton Ustyuzhanin Date: Fri, 18 May 2018 10:43:10 +0200 Subject: [PATCH] Remove unused resource configuration parameter --- in_command_test.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/in_command_test.go b/in_command_test.go index 4a3ebd4..87f28c3 100644 --- a/in_command_test.go +++ b/in_command_test.go @@ -466,7 +466,6 @@ var _ = Describe("In Command", func() { githubClient.GetReleaseReturns(buildRelease(1, "v0.35.0", true), nil) inRequest.Version = &resource.Version{ID: "1"} - inRequest.Source.Drafts = true inResponse, inErr = command.Run(destDir, inRequest) }) @@ -504,7 +503,6 @@ var _ = Describe("In Command", func() { githubClient.GetReleaseReturns(buildRelease(1, "", true), nil) inRequest.Version = &resource.Version{ID: "1"} - inRequest.Source.Drafts = true inResponse, inErr = command.Run(destDir, inRequest) }) @@ -538,7 +536,6 @@ var _ = Describe("In Command", func() { githubClient.GetReleaseReturns(buildNilTagRelease(1), nil) inRequest.Version = &resource.Version{ID: "1"} - inRequest.Source.Drafts = true inResponse, inErr = command.Run(destDir, inRequest) })