Skip to content

Commit

Permalink
remove extra whitespace IQSS#10112
Browse files Browse the repository at this point in the history
  • Loading branch information
pdurbin committed Nov 13, 2023
1 parent 2842cda commit d029cac
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/test/java/edu/harvard/iq/dataverse/api/ProvIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ public class ProvIT {
private static boolean provEnabled = false;

@BeforeAll
public static void setUpClass() {
public static void setUpClass() {
RestAssured.baseURI = UtilIT.getRestAssuredBaseUri();
Response provCollectionStatus = UtilIT.getSetting(SettingsServiceBean.Key.ProvCollectionEnabled);

provEnabled = provCollectionStatus.getStatusCode() == 200;
if(!provEnabled){
if (!provEnabled) {
UtilIT.enableSetting(SettingsServiceBean.Key.ProvCollectionEnabled);
}
}
Expand Down Expand Up @@ -99,7 +99,7 @@ public void testFreeformDraftActions() {
}

@Test
public void testAddProvFile() {
public void testAddProvFile() {

Response createDepositor = UtilIT.createRandomUser();
createDepositor.prettyPrint();
Expand Down

0 comments on commit d029cac

Please sign in to comment.