File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/test/java/com/bandwidth Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ public void testCreateCallAndGetCallState() throws Exception {
128128 String to = System .getenv ("USER_NUMBER" );
129129 String from = System .getenv ("BW_NUMBER" );
130130 String applicationId = System .getenv ("BW_VOICE_APPLICATION_ID" );
131- String answerUrl = System .getenv ("VOICE_CALLBACK_URL " );
131+ String answerUrl = System .getenv ("BASE_CALLBACK_URL" ). concat ( "/callbacks/outbound " );
132132
133133 CreateCallRequest body = new CreateCallRequest ();
134134 body .setTo (to );
@@ -156,7 +156,7 @@ public void testCreateCallInvalidPhoneNumber() throws Exception {
156156 String to = "+1invalid" ;
157157 String from = System .getenv ("BW_NUMBER" );
158158 String applicationId = System .getenv ("BW_VOICE_APPLICATION_ID" );
159- String answerUrl = System .getenv ("VOICE_CALLBACK_URL " );
159+ String answerUrl = System .getenv ("BASE_CALLBACK_URL" ). concat ( "/callbacks/outbound " );
160160
161161 CreateCallRequest body = new CreateCallRequest ();
162162 body .setTo (to );
You can’t perform that action at this time.
0 commit comments