Skip to content

Commit

Permalink
Fix exportMatches test
Browse files Browse the repository at this point in the history
  • Loading branch information
LoayGhreeb committed Aug 30, 2024
1 parent df5d7c1 commit 4872dc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/org/jabref/cli/ArgumentProcessorTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ void exportMatches(@TempDir Path tempDir) throws Exception {
Path outputBib = tempDir.resolve("output.bib").toAbsolutePath();
String outputBibFile = outputBib.toAbsolutePath().toString();

List<String> args = List.of("-n", "--debug", "--exportMatches", "Author=Einstein," + outputBibFile, originBibFile);
List<String> args = List.of("-n", "--debug", "--exportMatches", "author:Einstein," + outputBibFile, originBibFile);

ArgumentProcessor processor = new ArgumentProcessor(
args.toArray(String[]::new),
Expand Down

0 comments on commit 4872dc5

Please sign in to comment.