Lance Hannestad

Results 3 comments of Lance Hannestad

I guess this is related to https://github.com/gitpython-developers/GitPython/issues/852#issuecomment-472553235 If I add `R=True` to the line: ``` pprint(r.active_branch.commit.diff('master', create_patch=True, R=True)[0].diff.decode('utf-8').split('\n')) ``` Then I seem to get the right results. But this still...

I want assertions generated for test classes, and I can't get it to work. Do you know if this was ever fixed, and how to allow for both test and...

Bump for this issue. I've found the same workaround, with a utility method: ```java public static org.mockito.stubbing.Stubber countDown(CountDownLatch latch) { return org.mockito.Mockito.doAnswer(i -> { try { return i.callRealMethod(); } finally...