Skip to content

Commit

Permalink
Make BibtexEntryAssert.assertEquals(BibEntry, BibEntry) public
Browse files Browse the repository at this point in the history
  • Loading branch information
koppor committed Mar 11, 2016
1 parent eea587a commit 2a80e9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/net/sf/jabref/bibtex/BibtexEntryAssert.java
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public static void assertEquals(List<BibEntry> shouldBeIs, List<BibEntry> actual
/**
* Compares to BibTeX entries using their canonical representation
*/
private static void assertEquals(BibEntry shouldBeEntry, BibEntry entry) {
public static void assertEquals(BibEntry shouldBeEntry, BibEntry entry) {
// use the canonical string representation to compare the entries
String shouldBeEntryRepresentation = CanonicalBibtexEntry.getCanonicalRepresentation(shouldBeEntry);
String entryRepresentation = CanonicalBibtexEntry.getCanonicalRepresentation(entry);
Expand Down

0 comments on commit 2a80e9c

Please sign in to comment.