Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Siedlerchr committed Aug 6, 2024
1 parent 46c9197 commit 49da3f0
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 8 deletions.
1 change: 0 additions & 1 deletion src/main/java/org/jabref/logic/util/StandardFileType.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ public enum StandardFileType implements FileType {
MEDLINE("Medline", "nbib", "xml"),
MEDLINE_PLAIN("Medline Plain", "nbib", "txt"),
PUBMED("Pubmed", "fcgi"),
SILVER_PLATTER("SilverPlatter", "dat", "txt"),
AUX("Aux file", "aux"),
BIBTEX_DB("Bibtex library", "bib"),
BST("BibTeX-Style file", "bst"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ private static Stream<Object[]> importFormats() {
Collection<Object[]> result = new ArrayList<>();
result.add(new Object[]{"fileformat/RisImporterTest1.ris", "ris", 1});
result.add(new Object[]{"fileformat/IsiImporterTest1.isi", "isi", 1});
result.add(new Object[]{"fileformat/SilverPlatterImporterTest1.txt", "silverplatter", 1});
result.add(new Object[]{"fileformat/RepecNepImporterTest2.txt", "repecnep", 1});
result.add(new Object[]{"fileformat/OvidImporterTest3.txt", "ovid", 1});
result.add(new Object[]{"fileformat/Endnote.entries.enw", "refer", 5});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,12 +130,6 @@ public void sGetExtensions() {
assertEquals(StandardFileType.BIBTEX_DB, importer.getFileType());
}

@Test
public void getDescription() {
assertEquals(
"This importer enables `--importToOpen someEntry.bib`",
importer.getDescription());
}

@Test
public void recognizesDatabaseID() throws Exception {
Expand Down

0 comments on commit 49da3f0

Please sign in to comment.