aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.test/tst/org/eclipse
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2024-05-27 18:22:29 +0200
committerMatthias Sohn <matthias.sohn@sap.com>2024-05-28 07:19:16 +0200
commit9b2fe85c0279f4d5ac69f07ddcd48566c3555405 (patch)
tree24be9b65ea732c787aafdd690e04b7e31e97d8ba /org.eclipse.jgit.test/tst/org/eclipse
parent76ce6d91a2e07fdfcbfc8df6970c9e98a98e36a0 (diff)
downloadjgit-9b2fe85c0279f4d5ac69f07ddcd48566c3555405.tar.gz
jgit-9b2fe85c0279f4d5ac69f07ddcd48566c3555405.zip
PatchApplier.Result.Error: mark fields final
Fields of an Error instance shouldn't be modifiable after its creation. Adapt tests which were setting hh to null to skip asserting it. Change-Id: I0f55c1d5cd529aa510029054e6f05bd2637d1bca
Diffstat (limited to 'org.eclipse.jgit.test/tst/org/eclipse')
-rw-r--r--org.eclipse.jgit.test/tst/org/eclipse/jgit/patch/PatchApplierTest.java14
1 files changed, 6 insertions, 8 deletions
diff --git a/org.eclipse.jgit.test/tst/org/eclipse/jgit/patch/PatchApplierTest.java b/org.eclipse.jgit.test/tst/org/eclipse/jgit/patch/PatchApplierTest.java
index eec403a976..5507f8572d 100644
--- a/org.eclipse.jgit.test/tst/org/eclipse/jgit/patch/PatchApplierTest.java
+++ b/org.eclipse.jgit.test/tst/org/eclipse/jgit/patch/PatchApplierTest.java
@@ -373,10 +373,9 @@ public class PatchApplierTest {
assertEquals(result.getErrors().size(), 1);
PatchApplier.Result.Error error = result.getErrors().get(0);
- error.hh = null; // We don't assert the hunk header as it is a
- // complex object with lots of internal state.
- assertEquals(error, new PatchApplier.Result.Error(
- "cannot apply hunk", "allowconflict", null, true));
+ assertEquals("cannot apply hunk", error.msg);
+ assertEquals("allowconflict", error.oldFileName);
+ assertTrue(error.isGitConflict());
verifyChange(result, "allowconflict", true, 1);
}
@@ -388,10 +387,9 @@ public class PatchApplierTest {
assertEquals(result.getErrors().size(), 1);
PatchApplier.Result.Error error = result.getErrors().get(0);
- error.hh = null; // We don't assert the hunk header as it is a
- // complex object with lots of internal state.
- assertEquals(error, new PatchApplier.Result.Error(
- "cannot apply hunk", "ConflictOutOfBounds", null, true));
+ assertEquals("cannot apply hunk", error.msg);
+ assertEquals("ConflictOutOfBounds", error.oldFileName);
+ assertTrue(error.isGitConflict());
verifyChange(result, "ConflictOutOfBounds", true, 1);
}