Skip to content

Commit

Permalink
improve user test
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszsocha2 committed Nov 21, 2024
1 parent 484da0a commit 4f6cb13
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/intTest/java/com/box/sdk/BoxUserIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import java.net.URLDecoder;
import java.util.Calendar;
import java.util.Collection;
import java.util.UUID;
import java.util.logging.Level;
import java.util.logging.Logger;
import okhttp3.OkHttpClient;
Expand All @@ -35,8 +36,8 @@
*/
public class BoxUserIT {

private static final String NEW_USER_LOGIN = "login2@boz.com";
private static final String NEW_USER_NAME = "non-empty name";
private static final String NEW_USER_LOGIN = UUID.randomUUID() + "@boz.com";
private static final String NEW_USER_NAME = UUID.randomUUID().toString();

@BeforeClass
public static void cleanup() {
Expand Down

0 comments on commit 4f6cb13

Please sign in to comment.