Description
When the Swagger input has a basePath with a trailing slash, and a path with a leading slash, the resulting concatenated URL will end up with two slashes. While this is what was technically specified in the input, it's a good chance to be a little more flexible and remove one of the slashes from the resulting URL.
Repro steps
Use a Swagger input that looks something like:
{
"host": "api.host.com",
"basePath": "/",
"paths": {
"/v0.1/user": {
Expected behavior
The URL would be https://api.host.com//v0.1/user
Actual behavior
The URL would be https://api.host.com/v0.1/user