mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-19 01:25:40 -05:00
Localization check-in for September update (#464)
* Localization check-in for September update * Fix format of test check that was failing so that if it fails in lab we'll get useful error message
This commit is contained in:
@@ -128,8 +128,8 @@ namespace Microsoft.SqlTools.ServiceLayer.UnitTests.LanguageServer
|
||||
|
||||
this.bindingQueue.StopQueueProcessor(15000);
|
||||
|
||||
Assert.True(this.bindCallCount == 1);
|
||||
Assert.True(this.timeoutCallCount == 0);
|
||||
Assert.Equal(1, this.bindCallCount);
|
||||
Assert.Equal(0, this.timeoutCallCount);
|
||||
Assert.False(this.isCancelationRequested);
|
||||
}
|
||||
|
||||
@@ -153,8 +153,8 @@ namespace Microsoft.SqlTools.ServiceLayer.UnitTests.LanguageServer
|
||||
|
||||
this.bindingQueue.StopQueueProcessor(15000);
|
||||
|
||||
Assert.True(this.bindCallCount == 100);
|
||||
Assert.True(this.timeoutCallCount == 0);
|
||||
Assert.Equal(100, this.bindCallCount);
|
||||
Assert.Equal(0, this.timeoutCallCount);
|
||||
Assert.False(this.isCancelationRequested);
|
||||
}
|
||||
|
||||
@@ -178,8 +178,8 @@ namespace Microsoft.SqlTools.ServiceLayer.UnitTests.LanguageServer
|
||||
|
||||
this.bindingQueue.StopQueueProcessor(15000);
|
||||
|
||||
Assert.True(this.bindCallCount == 0);
|
||||
Assert.True(this.timeoutCallCount == 1);
|
||||
Assert.Equal(0, this.bindCallCount);
|
||||
Assert.Equal(1, this.timeoutCallCount);
|
||||
Assert.True(this.isCancelationRequested);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user