updated smo nuget package with latest bits (#508)

* updated smo nuget package with latest bits

* added new nupkg

* fixed peek definition test

* fixed batch parser wrapper tests
This commit is contained in:
Aditya Bist
2017-10-19 18:02:47 -07:00
committed by Karl Burtram
parent 328fb30db2
commit 49f0221dc8
10 changed files with 12 additions and 12 deletions

View File

@@ -19,7 +19,7 @@ namespace Microsoft.SqlTools.ServiceLayer.IntegrationTests.BatchParser
Assert.Equal(1, batch.StartLine);
Assert.Equal(1, batch.StartColumn);
Assert.Equal(2, batch.EndLine);
Assert.Equal(sqlScript.Length, batch.EndColumn);
Assert.Equal(sqlScript.Length+1, batch.EndColumn);
}
}
@@ -36,7 +36,7 @@ namespace Microsoft.SqlTools.ServiceLayer.IntegrationTests.BatchParser
Assert.Equal(1, batch.StartLine);
Assert.Equal(1, batch.StartColumn);
Assert.Equal(2, batch.EndLine);
Assert.Equal(sqlScript.Length, batch.EndColumn);
Assert.Equal(sqlScript.Length+1, batch.EndColumn);
}
}