diff options
author | Thomas Wolf <thomas.wolf@paranor.ch> | 2021-07-29 13:09:52 +0200 |
---|---|---|
committer | Thomas Wolf <thomas.wolf@paranor.ch> | 2021-07-29 13:10:16 +0200 |
commit | 59aec9b15a10609ef0c1a8603ad5dae42d0f3320 (patch) | |
tree | c320256092cb176e16e2324b97bfa6b7298bbbe6 /org.eclipse.jgit.test/tst/org | |
parent | 24d6d605388c82201092cf1699b51095299380a2 (diff) | |
parent | 60bffc2fa830417b62de24cc6301906d4aa6bb5c (diff) | |
download | jgit-59aec9b15a10609ef0c1a8603ad5dae42d0f3320.tar.gz jgit-59aec9b15a10609ef0c1a8603ad5dae42d0f3320.zip |
Merge branch 'stable-5.8' into stable-5.9
* stable-5.8:
[test] Create keystore with the keytool of the running JDK
ReachabilityCheckerTestCase: fix reachable from self test case
Change-Id: If09cbb877c674f15261715cecef7a2393bf66fa3
Signed-off-by: Thomas Wolf <thomas.wolf@paranor.ch>
Diffstat (limited to 'org.eclipse.jgit.test/tst/org')
-rw-r--r-- | org.eclipse.jgit.test/tst/org/eclipse/jgit/revwalk/ReachabilityCheckerTestCase.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jgit.test/tst/org/eclipse/jgit/revwalk/ReachabilityCheckerTestCase.java b/org.eclipse.jgit.test/tst/org/eclipse/jgit/revwalk/ReachabilityCheckerTestCase.java index 4695eaa695..a129788d8b 100644 --- a/org.eclipse.jgit.test/tst/org/eclipse/jgit/revwalk/ReachabilityCheckerTestCase.java +++ b/org.eclipse.jgit.test/tst/org/eclipse/jgit/revwalk/ReachabilityCheckerTestCase.java @@ -55,7 +55,7 @@ public abstract class ReachabilityCheckerTestCase assertReachable("reachable from another tip", checker.areAllReachable(Arrays.asList(a), Stream.of(b2))); assertReachable("reachable from itself", - checker.areAllReachable(Arrays.asList(a), Stream.of(b2))); + checker.areAllReachable(Arrays.asList(a), Stream.of(a))); } @Test |