From 663cb669b13f8c0608b85e7f997a66f5cc307236 Mon Sep 17 00:00:00 2001 From: David Pursehouse Date: Sun, 17 Dec 2017 15:33:39 +0900 Subject: [PATCH] PushConnectionTest: Increase maxCommandBytes yet again It was already increased in 61a943e and 661232b but is still not enough to take into account snapshot versions that are 100 or more commits ahead of tag, i.e. 4.9.2.201712150930-r.105-gc1d37ca27 Change-Id: Ibeff73adae06b92fe5bb9c5eced9e4c6a08c437c Signed-off-by: David Pursehouse --- .../tst/org/eclipse/jgit/transport/PushConnectionTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/PushConnectionTest.java b/org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/PushConnectionTest.java index 0e4e9ccd4..c16c1b2a9 100644 --- a/org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/PushConnectionTest.java +++ b/org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/PushConnectionTest.java @@ -184,7 +184,7 @@ public void limitCommandBytes() throws IOException { updates.put(rru.getRemoteName(), rru); } - server.getConfig().setInt("receive", null, "maxCommandBytes", 190); + server.getConfig().setInt("receive", null, "maxCommandBytes", 195); try (Transport tn = testProtocol.open(uri, client, "server"); PushConnection connection = tn.openPush()) { try {