We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77f0b9e commit c854144Copy full SHA for c854144
apptrust/service/versions/version_service_test.go
@@ -397,7 +397,7 @@ func TestUpdateAppVersion(t *testing.T) {
397
for _, tt := range tests {
398
t.Run(tt.name, func(t *testing.T) {
399
mockHttpClient := mockhttp.NewMockApptrustHttpClient(ctrl)
400
- mockHttpClient.EXPECT().Patch("/v1/applications/test-app/versions/1.0.0?async=false", tt.request).
+ mockHttpClient.EXPECT().Patch("/v1/applications/test-app/versions/1.0.0", tt.request).
401
Return(tt.mockResponse, []byte(tt.mockResponseBody), tt.mockError).Times(1)
402
403
mockCtx := mockservice.NewMockContext(ctrl)
0 commit comments