mgulubov / RestSharpHighQualityCodeTeamProject

Refactoring RestSharp Application - SoftUni High-Quality Code Teamwork Project
Apache License 2.0
0 stars 0 forks source link

ConstructRequestUrl method should return the Url in lower-case #10

Closed mgulubov closed 9 years ago

mgulubov commented 9 years ago

The ConstructRequestUrl(Uri url) method in the RestSharp.Authenticators.OAuth.OAuthTools.cs class, does not ensure that the returned URL is always in lower-case.

mgulubov commented 9 years ago

Modified line 215: return sb.ToString(); changed to: return sb.ToString().ToLower();

All tests, except for the ones in Issue #9, pass without any problems.