Fix broken STS language service tests (#1837)

* Fix broken STS language service tests

* consolidate
This commit is contained in:
Charles Gagnon
2023-01-31 13:25:44 -08:00
committed by GitHub
parent f64d6c5c58
commit 036ce9b527
3 changed files with 34 additions and 14 deletions

View File

@@ -181,7 +181,7 @@ namespace Microsoft.SqlTools.ServiceLayer.LanguageServices
}
}
private CancellationTokenSource existingRequestCancellation;
private CancellationTokenSource? existingRequestCancellation;
/// <summary>
/// Gets or sets the current workspace service instance

View File

@@ -445,6 +445,11 @@ namespace Microsoft.SqlTools.ServiceLayer.Workspace.Contracts
.ToList();
}
public override string ToString()
{
return $"ScriptFile:{this.FilePath}";
}
#endregion
}
}