Skip to content

Commit

Permalink
fix(protocol-tests): fix protocol test HttpHandler (#920)
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Yuan authored Sep 8, 2023
1 parent ec8dd89 commit c2298c9
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ class RequestSerializationTestHandler implements HttpHandler {
): Promise<{ response: HttpResponse }> {
return Promise.reject(new EXPECTED_REQUEST_SERIALIZATION_ERROR(request));
}
updateHttpClientConfig(key: never, value: never): void {}
httpHandlerConfigs() { return {}; }
}

/**
Expand Down Expand Up @@ -64,6 +66,8 @@ class ResponseDeserializationTestHandler implements HttpHandler {
})
});
}
updateHttpClientConfig(key: never, value: never): void {}
httpHandlerConfigs() { return {}; }
}

interface comparableParts {
Expand Down

0 comments on commit c2298c9

Please sign in to comment.