(self, *args, **kwargs)
| 208 | |
| 209 | # Force shallow clone failure |
| 210 | def fake_shallow_clone(self, *args, **kwargs): |
| 211 | raise CalledProcessError(1, (), b'', None) |
| 212 | store._shallow_clone = fake_shallow_clone |
| 213 | |
| 214 | ret = store.clone(path, rev) |
nothing calls this directly
no test coverage detected