Skip to content
This repository has been archived by the owner on Oct 13, 2020. It is now read-only.

Commit

Permalink
Fix assertion in SmartClientSmartServerTest.testPush_CreateBranch()
Browse files Browse the repository at this point in the history
This assertion only defined a message but didn't assert anything.

Change-Id: I0914642b64b69dc4e3ec24acbf8052f9171613d8
Signed-off-by: Matthias Sohn <[email protected]>
  • Loading branch information
msohn committed Jul 7, 2016
1 parent 63cf87f commit 4c25757
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -610,7 +610,7 @@ public void testPush_CreateBranch() throws Exception {
fsck(remoteRepository, Q);

final ReflogReader log = remoteRepository.getReflogReader(dstName);
assertNotNull("has log for " + dstName);
assertNotNull("has log for " + dstName, log);

final ReflogEntry last = log.getLastEntry();
assertNotNull("has last entry", last);
Expand Down

0 comments on commit 4c25757

Please sign in to comment.