Skip to content

Commit

Permalink
org.eclipse.tips.core.TipTest.testEqualsObject() fails #140
Browse files Browse the repository at this point in the history
  • Loading branch information
vrubezhny committed Jun 7, 2023
1 parent a6e0c3a commit 968b720
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions org.eclipse.tips.tests/src/org/eclipse/tips/core/TipTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ public void testGetSubject() {
public void testEqualsObject() {
TestTip testTip = new TestTip(fProvider.getID(), HTML, SUBJECT_TIP);
TestTip testTipx = new TestTip(fProvider.getID(), HTML, SUBJECT_TIP);
assertNotNull(testTip);
assertEquals(testTip, testTip.equals(testTip));
assertFalse(testTip.equals(fTip));
assertTrue(testTip.equals(testTipx));
assertNotEquals(fTip, testTip);
assertEquals(testTipx, testTip);

Expand Down

0 comments on commit 968b720

Please sign in to comment.