| OLD | NEW |
| 1 var initialize_InterceptionTest = function() { | 1 var initialize_InterceptionTest = function() { |
| 2 | 2 |
| 3 var interceptionRequestParams = {}; | 3 var interceptionRequestParams = {}; |
| 4 var requestIdToFilename = {}; | 4 var requestIdToFilename = {}; |
| 5 var filenameToInterceptionId = {}; | 5 var filenameToInterceptionId = {}; |
| 6 var loggedMessages = {}; | 6 var loggedMessages = {}; |
| 7 var InterceptionIdToCanonicalInterceptionId = {}; | 7 var InterceptionIdToCanonicalInterceptionId = {}; |
| 8 var idToCanoncalId = {}; | 8 var idToCanoncalId = {}; |
| 9 var nextId = 1; | 9 var nextId = 1; |
| 10 | 10 |
| (...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 "interceptionId": event.params.interceptionId, | 286 "interceptionId": event.params.interceptionId, |
| 287 "authChallengeResponse": { | 287 "authChallengeResponse": { |
| 288 "response": "ProvideCredentials", | 288 "response": "ProvideCredentials", |
| 289 "username": username, | 289 "username": username, |
| 290 "password": password | 290 "password": password |
| 291 } | 291 } |
| 292 }); | 292 }); |
| 293 } | 293 } |
| 294 | 294 |
| 295 } | 295 } |
| OLD | NEW |