MeasurePackSizeTest: Open Transport in try-with-resource

Change-Id: If9a39f8eabe1cd3474bdc025ac92218cd2dd1640
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
This commit is contained in:
David Pursehouse 2018-03-07 14:43:51 +09:00
parent 658c7c179d
commit 057a295f0c
1 changed files with 1 additions and 5 deletions

View File

@ -144,11 +144,9 @@ public void testPush_packSize() throws Exception {
final RevCommit Q = src.commit().add("Q", Q_txt).create(); final RevCommit Q = src.commit().add("Q", Q_txt).create();
final Repository db = src.getRepository(); final Repository db = src.getRepository();
final String dstName = Constants.R_HEADS + "new.branch"; final String dstName = Constants.R_HEADS + "new.branch";
Transport t;
PushResult result; PushResult result;
t = Transport.open(db, remoteURI); try (Transport t = Transport.open(db, remoteURI)) {
try {
final String srcExpr = Q.name(); final String srcExpr = Q.name();
final boolean forceUpdate = false; final boolean forceUpdate = false;
final String localName = null; final String localName = null;
@ -158,8 +156,6 @@ public void testPush_packSize() throws Exception {
srcExpr, dstName, forceUpdate, localName, oldId); srcExpr, dstName, forceUpdate, localName, oldId);
result = t.push(NullProgressMonitor.INSTANCE, result = t.push(NullProgressMonitor.INSTANCE,
Collections.singleton(update)); Collections.singleton(update));
} finally {
t.close();
} }
assertEquals("expected 1 RemoteUpdate", 1, result.getRemoteUpdates() assertEquals("expected 1 RemoteUpdate", 1, result.getRemoteUpdates()
.size()); .size());