Skip to content

Commit

Permalink
Fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
koppor committed Nov 21, 2023
1 parent e1ac0af commit 0915f09
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/test/java/org/jabref/logic/journals/AbbreviationTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ void testDefaultAndShortestUniqueAbbreviationsAreSame() {

@Test
void testEquals() {
Abbreviation abbreviation = new Abbreviation("Long Name", "L N", "LN");
Abbreviation otherAbbreviation = new Abbreviation("Long Name", "L N", "LN");
assertEquals(abbreviation, otherAbbreviation);
Abbreviation abbreviation = new Abbreviation("Long Name", "L N", "LN");
Abbreviation otherAbbreviation = new Abbreviation("Long Name", "L N", "LN");
assertEquals(abbreviation, otherAbbreviation);
assertNotEquals("String", abbreviation);
}

Expand Down

0 comments on commit 0915f09

Please sign in to comment.