cyberark / conjur-api-dotnet

.NET client for the CyberArk Conjur API
Apache License 2.0
15 stars 11 forks source link

Fix Failing Tests Using GetToken() #45

Open JakeQuilty opened 4 years ago

JakeQuilty commented 4 years ago

These 3 tests are commented out, but fail when run. They use the GetToken() method in the ApiKeyAuthenticator class. This method uses: HttpWebRequest request = WebRequest.CreateHttp(this.uri); which causes an error, because the test uri is "test:///". The method expects an http uri, so it throws an error.

Notes: