Skip to content

Commit

Permalink
fix(New Fields): Added linkedinProfileName to ClientCorporation
Browse files Browse the repository at this point in the history
  • Loading branch information
monroepe authored Jan 26, 2018
1 parent 6c42bf8 commit 92e5371
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<mockito.version>1.10.19</mockito.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<sdk-rest.version>1.2.23</sdk-rest.version>
<sdk-rest.version>1.2.26</sdk-rest.version>
<surefire.version>2.19.1</surefire.version>
<tika-parsers.version>1.14</tika-parsers.version>
</properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,6 @@ public void testRunCandidate() throws Exception {
csvReader.readRecord();
Assert.assertEquals(2, csvReader.getHeaders().length);
Assert.assertEquals(2, csvReader.getValues().length);

// Cleanup test files
Boolean isDeleted = outputFile.delete();
Assert.assertTrue(isDeleted);
}

@Test
Expand All @@ -122,10 +118,6 @@ public void testRunLead() throws Exception {
Assert.assertEquals(1, csvReader.getValues().length);
Assert.assertEquals("comments", csvReader.getHeaders()[0]);
Assert.assertEquals("String", csvReader.getValues()[0]);

// Cleanup test files
Boolean isDeleted = outputFile.delete();
Assert.assertTrue(isDeleted);
}

@Test
Expand Down

0 comments on commit 92e5371

Please # to comment.