Skip to content

Commit 50d039f

Browse files
authored
Update BaseIntegrationTest.cs
1 parent f869ffe commit 50d039f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercise.tests/IntegrationTests/BaseIntegrationTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ protected async Task<HttpResponseMessage> SendAuthenticatedPatchAsync<T>(string
129129
return await SendAuthenticatedRequestAsync(HttpMethod.Patch, endpoint, token, body);
130130
}
131131

132-
protected async Task<HttpResponseMessage> SendAuthenticatedPutAsync<T>(string endpoint, string token, T? body)
132+
protected async Task<HttpResponseMessage> SendAuthenticatedPutAsync<T>(string endpoint, string token, T body)
133133
{
134134
return await SendAuthenticatedRequestAsync(HttpMethod.Put, endpoint, token, body);
135135
}

0 commit comments

Comments
 (0)