forked from OSchip/llvm-project
[clangd] Fix test (it worked by coincidence before)
This commit is contained in:
parent
7a11cc06a4
commit
5abfe646f5
|
@ -466,7 +466,7 @@ TEST_F(TUSchedulerTests, ManyUpdates) {
|
|||
auto Inputs = getInputs(File, Contents.str());
|
||||
{
|
||||
WithContextValue WithNonce(NonceKey, ++Nonce);
|
||||
Inputs.Version = Nonce;
|
||||
Inputs.Version = std::to_string(Nonce);
|
||||
updateWithDiags(
|
||||
S, File, Inputs, WantDiagnostics::Auto,
|
||||
[File, Nonce, &Mut, &TotalUpdates](std::vector<Diag>) {
|
||||
|
|
Loading…
Reference in New Issue