Browse Source

PushCommandTest: Remove unused variables to prevent errors in Eclipse

Change-Id: Ie656b18fb151bf1e3c2dcc0438a77e32102991c2
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
tags/v4.7.0.201704051617-r
David Pursehouse 7 years ago
parent
commit
16dc88fe10

+ 3
- 3
org.eclipse.jgit.test/tst/org/eclipse/jgit/api/PushCommandTest.java View File

try (Git git1 = new Git(db)) { try (Git git1 = new Git(db)) {
// create one commit and push it // create one commit and push it
RevCommit commit = git1.commit().setMessage("initial commit").call(); RevCommit commit = git1.commit().setMessage("initial commit").call();
Ref branchRef = git1.branchCreate().setName("initial").call();
git1.branchCreate().setName("initial").call();


RefSpec spec = new RefSpec("refs/heads/master:refs/heads/x"); RefSpec spec = new RefSpec("refs/heads/master:refs/heads/x");
git1.push().setRemote("test").setRefSpecs(spec) git1.push().setRemote("test").setRefSpecs(spec)
db2.resolve(commit.getId().getName() + "^{commit}")); db2.resolve(commit.getId().getName() + "^{commit}"));
//now try to force-push a new commit, with a good lease //now try to force-push a new commit, with a good lease


RevCommit commit2 = git1.commit().setMessage("second commit").call();
git1.commit().setMessage("second commit").call();
Iterable<PushResult> results = Iterable<PushResult> results =
git1.push().setRemote("test").setRefSpecs(spec) git1.push().setRemote("test").setRefSpecs(spec)
.setRefLeaseSpecs(new RefLeaseSpec("refs/heads/x", "initial")) .setRefLeaseSpecs(new RefLeaseSpec("refs/heads/x", "initial"))
assertEquals(update.getStatus(), RemoteRefUpdate.Status.OK); assertEquals(update.getStatus(), RemoteRefUpdate.Status.OK);
} }


RevCommit commit3 = git1.commit().setMessage("third commit").call();
git1.commit().setMessage("third commit").call();
//now try to force-push a new commit, with a bad lease //now try to force-push a new commit, with a bad lease


results = results =

Loading…
Cancel
Save