diff options
author | Stefan Beller <sbeller@google.com> | 2016-08-26 14:10:06 -0700 |
---|---|---|
committer | Shawn Pearce <spearce@spearce.org> | 2016-08-26 14:52:07 -0700 |
commit | 36cf4fe580a2b771331e0b9bcaea5505b3b7e27a (patch) | |
tree | f4ad0966839105859fb8057b91efe3197c20ca77 /org.eclipse.jgit.test | |
parent | 3b64c09ac48ef30b0ce5867a01cbbd62a5434df9 (diff) | |
download | jgit-36cf4fe580a2b771331e0b9bcaea5505b3b7e27a.tar.gz jgit-36cf4fe580a2b771331e0b9bcaea5505b3b7e27a.zip |
Fix push option initalization on HTTP
Initialize pushOptions when we decide to use them, instead of when we
advertise them.
In the case of HTTP the advertisement is in a different network
request, hence in a different instance of the BaseReceivePack.
Change-Id: I094c60942e04de82cb6d8433c9cd43a46ffae332
Signed-off-by: Stefan Beller <sbeller@google.com>
Diffstat (limited to 'org.eclipse.jgit.test')
-rw-r--r-- | org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/PushOptionsTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/PushOptionsTest.java b/org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/PushOptionsTest.java index 1554f84305..8ff0226183 100644 --- a/org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/PushOptionsTest.java +++ b/org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/PushOptionsTest.java @@ -220,7 +220,7 @@ public class PushOptionsTest extends RepositoryTestCase { one.getStatus()); assertSame(RemoteRefUpdate.Status.REJECTED_REMOTE_CHANGED, two.getStatus()); - assertEquals(new ArrayList<String>(), baseReceivePack.getPushOptions()); + assertNull(baseReceivePack.getPushOptions()); } @Test |