[clangd] Fix test (it worked by coincidence before)

This commit is contained in:
Sam McCall 2020-03-05 10:11:44 +01:00
parent 7a11cc06a4
commit 5abfe646f5
1 changed files with 1 additions and 1 deletions

View File

@ -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>) {