[ORC] Fix an ambiguous call in a unit test.

llvm-svn: 359529
This commit is contained in:
Lang Hames 2019-04-30 02:43:01 +00:00
parent b8d03935e9
commit baa5507438
1 changed files with 2 additions and 1 deletions

View File

@ -288,7 +288,8 @@ TEST_F(CoreAPIsStandardTest, LookupWithGeneratorFailure) {
<< "Generator failure did not propagate through lookupFlags"; << "Generator failure did not propagate through lookupFlags";
EXPECT_THAT_ERROR( EXPECT_THAT_ERROR(
ES.lookup(JITDylibSearchList({{&JD, false}}), {Foo}).takeError(), ES.lookup(JITDylibSearchList({{&JD, false}}), SymbolNameSet({Foo}))
.takeError(),
Failed<StringError>()) Failed<StringError>())
<< "Generator failure did not propagate through lookup"; << "Generator failure did not propagate through lookup";
} }