Fix Null Pointer exception in test (#999)

* Full NPE

* force trigger
This commit is contained in:
Charles Gagnon
2020-07-24 10:05:14 -07:00
committed by GitHub
parent 9fba9b1955
commit aa56ec852d

View File

@@ -27,7 +27,7 @@ namespace Microsoft.SqlTools.ServiceLayer.Utility
{
for (int i = 0; i < args.Length; ++i)
{
string arg = args[i].ToLowerInvariant();
string arg = args[i]?.ToLowerInvariant();
switch (arg)
{