From 3f0557fed13e57ddec2bea9dc77c692af444ff0a Mon Sep 17 00:00:00 2001 From: Ori Hoch Date: Wed, 27 Feb 2019 12:23:17 +0200 Subject: [PATCH] redact potentionally sensitive details (need to remove from commit history too) --- Guidestar Server Side/classes/WS_DelegatedSSOTest.cls | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Guidestar Server Side/classes/WS_DelegatedSSOTest.cls b/Guidestar Server Side/classes/WS_DelegatedSSOTest.cls index 051492a..230fd7b 100644 --- a/Guidestar Server Side/classes/WS_DelegatedSSOTest.cls +++ b/Guidestar Server Side/classes/WS_DelegatedSSOTest.cls @@ -4,7 +4,7 @@ private class WS_DelegatedSSOTest{ static TestMethod void testPost(){ RestRequest req = new RestRequest(); RestResponse res = new RestResponse(); - string uri = 'https://sha-gdnptech.cs88.force.com/services/apexrest/delegated-sso/'; + string uri = 'REDACTED'; Test.startTest(); req.requestURI = uri; @@ -14,7 +14,7 @@ private class WS_DelegatedSSOTest{ RestContext.response = res; String body1 = ''; - String body2 = 'CAAXgFG8A8zIQPEHxib0m5XWu84ZD10.01.01.01'; + String body2 = 'REDACTEDREDACTED'; RestContext.request.requestBody = Blob.valueof(body1 + '1234@facebook.com' + body2); WS_DelegatedSSO.authenticate(); @@ -23,4 +23,4 @@ private class WS_DelegatedSSOTest{ } -} \ No newline at end of file +}