use of org.zmlx.hg4idea.provider.HgRepositoryLocation in project intellij-community by JetBrains.
the class HgBrowseChangesTest method doTest.
private void doTest() throws HgCommandException, VcsException {
CachingCommittedChangesProvider provider = myVcs.getCachingCommittedChangesProvider();
assert provider != null;
//noinspection unchecked
List<CommittedChangeList> revisions = provider.getCommittedChanges(mySettings, new HgRepositoryLocation(myRepository.getUrl(), myRepository), -1);
assertTrue(!revisions.isEmpty());
}
Aggregations