Skip to content

Commit

Permalink
Fix XMP test
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-kolb committed Dec 13, 2016
1 parent f144141 commit 6ba6b62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/net/sf/jabref/cli/XMPUtilMain.java
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ private static void usage() {
System.out.println(" xmpUtil <bib> <pdf>");
System.out.println("");
System.out
.println("To report bugs visit http://jabref.sourceforge.net");
.println("To report bugs visit https://github.com/JabRef/jabref/issues");
}

}
2 changes: 1 addition & 1 deletion src/test/java/net/sf/jabref/logic/xmp/XMPUtilTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -1207,13 +1207,13 @@ public void testCommandLineSinglePdf() throws IOException, TransformerException,
* @throws TransformerException
*/
@Test
@Ignore
public void testCommandLineByKey() throws IOException, TransformerException {

File tempBib = File.createTempFile("JabRef", ".bib");
try (BufferedWriter fileWriter = Files.newBufferedWriter(tempBib.toPath(), StandardCharsets.UTF_8)) {
fileWriter.write(t1BibtexString());
fileWriter.write(t2BibtexString());
fileWriter.close();

{ // First try canh05
PrintStream oldOut = System.out;
Expand Down

0 comments on commit 6ba6b62

Please sign in to comment.