Merge pull request #1125 from rustyconover/fix-url-path-escaping
Fix failing test case for URL escaping problem.master
						commit
						bb745757de
					
				| 
						 | 
					@ -238,7 +238,8 @@ func TestBuilderFromRequestWithPrefix(t *testing.T) {
 | 
				
			||||||
			base:    "https://subdomain.example.com/prefix/",
 | 
								base:    "https://subdomain.example.com/prefix/",
 | 
				
			||||||
			configHost: url.URL{
 | 
								configHost: url.URL{
 | 
				
			||||||
				Scheme: "https",
 | 
									Scheme: "https",
 | 
				
			||||||
				Host:   "subdomain.example.com/prefix",
 | 
									Host:   "subdomain.example.com",
 | 
				
			||||||
 | 
									Path:   "/prefix/",
 | 
				
			||||||
			},
 | 
								},
 | 
				
			||||||
		},
 | 
							},
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue