Skip to content

Commit

Permalink
Deleted empty lines
Browse files Browse the repository at this point in the history
  • Loading branch information
Braunch committed Mar 17, 2016
1 parent 10ffb1c commit 3e4c73c
Showing 1 changed file with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ public void testIsRecognizedFormatReject() throws IOException {
List<String> testList = Arrays.asList("CopacImporterTest1.txt", "CopacImporterTest2.txt",
"IEEEImport1.txt", "IsiImporterTest1.isi", "IsiImporterTestInspec.isi", "IsiImporterTestWOS.isi",
"IsiImporterTestMedline.isi", "RisImporterTest1.ris", "InspecImportTestFalse.txt");

for (String str : testList) {
try (InputStream inStream = InspecImportTest.class.getResourceAsStream(str)) {
assertFalse(inspecImp.isRecognizedFormat(inStream));
Expand All @@ -53,9 +52,8 @@ public void testIsRecognizedFormatReject() throws IOException {

@Test
public void testCompleteBibtexEntryOnJournalPaperImport() throws IOException {

BibEntry shouldBeEntry = new BibEntry();

BibEntry shouldBeEntry = new BibEntry();
shouldBeEntry.setType("article");
shouldBeEntry.setField("title", "The SIS project : software reuse with a natural language approach");
shouldBeEntry.setField("author", "Prechelt, Lutz");
Expand All @@ -71,7 +69,6 @@ public void testCompleteBibtexEntryOnJournalPaperImport() throws IOException {

assertEquals(1, entries.size());
BibEntry entry = entries.get(0);

BibtexEntryAssert.assertEquals(shouldBeEntry, entry);

}
Expand Down Expand Up @@ -106,16 +103,12 @@ public void importMiscGivesMisc() throws IOException {

@Test
public void testGetFormatName() {

assertEquals("INSPEC", inspecImp.getFormatName());

}

@Test
public void testGetCLIId() {

assertEquals("inspec", inspecImp.getCLIId());

}

}

0 comments on commit 3e4c73c

Please sign in to comment.