Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszsocha2 committed Jul 11, 2024
1 parent 5fde6e7 commit 5d85071
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions src/intTest/java/com/box/sdk/BoxFileIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,15 @@
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.time.LocalDateTime;
import java.util.*;

import java.util.ArrayList;
import java.util.Calendar;
import java.util.Collection;
import java.util.Date;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Random;
import org.hamcrest.Matchers;
import org.junit.AfterClass;
import org.junit.BeforeClass;
Expand Down Expand Up @@ -140,7 +147,7 @@ public void getRepresentationContentSucceeds() throws InterruptedException {
}

@Test
public void uploadFileStramSucceeds(){
public void uploadFileStramSucceeds() {
BoxAPIConnection api = jwtApiForServiceAccount();
BoxFolder folder = getUniqueFolder(api);

Expand Down

0 comments on commit 5d85071

Please sign in to comment.