From 6f15ac0b8fdb3cd4bb2e6697cba7fd38b93d2a3c Mon Sep 17 00:00:00 2001 From: Karl Burtram Date: Wed, 14 Dec 2016 14:35:45 -0800 Subject: [PATCH] Don't call SR generated constructors (#189) --- test/Microsoft.SqlTools.ServiceLayer.Test/Utility/SrTests.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/Microsoft.SqlTools.ServiceLayer.Test/Utility/SrTests.cs b/test/Microsoft.SqlTools.ServiceLayer.Test/Utility/SrTests.cs index 8b3b7041..8b15df20 100644 --- a/test/Microsoft.SqlTools.ServiceLayer.Test/Utility/SrTests.cs +++ b/test/Microsoft.SqlTools.ServiceLayer.Test/Utility/SrTests.cs @@ -16,12 +16,10 @@ namespace Microsoft.SqlTools.Test.Utility [Fact] public void SrPropertiesTest() { - Assert.NotNull(new SR()); Assert.NotNull(SR.QueryServiceSubsetBatchNotCompleted); Assert.NotNull(SR.QueryServiceFileWrapperWriteOnly); Assert.NotNull(SR.QueryServiceFileWrapperNotInitialized); Assert.NotNull(SR.QueryServiceColumnNull); - Assert.NotNull(new SR.Keys()); } } }