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 484da0a commit 4f6cb13Copy full SHA for 4f6cb13
src/intTest/java/com/box/sdk/BoxUserIT.java
@@ -23,6 +23,7 @@
23
import java.net.URLDecoder;
24
import java.util.Calendar;
25
import java.util.Collection;
26
+import java.util.UUID;
27
import java.util.logging.Level;
28
import java.util.logging.Logger;
29
import okhttp3.OkHttpClient;
@@ -35,8 +36,8 @@
35
36
*/
37
public class BoxUserIT {
38
- private static final String NEW_USER_LOGIN = "login2@boz.com";
39
- private static final String NEW_USER_NAME = "non-empty name";
+ private static final String NEW_USER_LOGIN = UUID.randomUUID() + "@boz.com";
40
+ private static final String NEW_USER_NAME = UUID.randomUUID().toString();
41
42
@BeforeClass
43
public static void cleanup() {
0 commit comments