We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a65ae2 commit 86a31f1Copy full SHA for 86a31f1
src/test/java/com/bandwidth/ApiTest.java
@@ -287,8 +287,9 @@ public void testMfaVoiceInvalidPhoneNumber() throws Exception {
287
288
@Test
289
public void testMfaVerify() throws Exception {
290
+ java.util.Random wheelOfPhoneNumbers = new java.util.Random(System.currentTimeMillis());
291
String accountId = System.getenv("BW_ACCOUNT_ID");
- String to = System.getenv("USER_NUMBER");
292
+ String to = "+1000" + wheelOfPhoneNumbers.nextInt(10000000);
293
String applicationId = System.getenv("BW_VOICE_APPLICATION_ID");
294
String scope = "scope";
295
String code = "123456";
0 commit comments