Fix target name in "other" resolver test

This commit is contained in:
Michael Lumish 2020-04-16 07:45:29 -07:00
parent 13cc016e4e
commit 1cd0ef12f2
1 changed files with 1 additions and 1 deletions

View File

@ -400,7 +400,7 @@ describe('Name Resolver', () => {
}
it('Should return the correct authority if a different resolver has been registered', () => {
const target = parseUri('other://name')!;
const target = parseUri('other:name')!;
resolverManager.registerResolver('other:', OtherResolver);
const authority = resolverManager.getDefaultAuthority(target);