Not very explicit it fact the expected url is not matching exactly the mocked url.
A way to debug that is to use the form with a custom function that allows to do the matching by hand
const req = httpMock.expectOne((request: any) => {
// Here we test urlWithParams and not url
return request.urlWithParams === expectedUrl + addedParams;
});