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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@359529 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Lang Hames 2019-04-30 02:43:01 +00:00
parent ffc144faab
commit f235e145c9

View File

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