Skip to content

Commit 8a098b9

Browse files
committed
Update tests.
1 parent 88a460c commit 8a098b9

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/Berrysoft.Console/CommandLine.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ public void Parse(string[] args)
198198
assigned = true;
199199
}
200200
arg = validLongArgs[name];
201-
if (argdic.TryGetValue(arg, out value))
201+
if (arg != null && argdic.TryGetValue(arg, out value))
202202
{
203203
if (!assigned)
204204
{

tests/Berrysoft.Console.Test/Berrysoft.Console.Test.vbproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.2" />
11+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" />
1212
<PackageReference Include="MSTest.TestAdapter" Version="1.3.2" />
1313
<PackageReference Include="MSTest.TestFramework" Version="1.3.2" />
1414
</ItemGroup>

tests/Berrysoft.Data.Test/Berrysoft.Data.Test.vbproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.2" />
11+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" />
1212
<PackageReference Include="MSTest.TestAdapter" Version="1.3.2" />
1313
<PackageReference Include="MSTest.TestFramework" Version="1.3.2" />
1414
</ItemGroup>

tests/Berrysoft.Unsafe.Test/Berrysoft.Unsafe.Test.vbproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.2" />
11+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" />
1212
<PackageReference Include="MSTest.TestAdapter" Version="1.3.2" />
1313
<PackageReference Include="MSTest.TestFramework" Version="1.3.2" />
1414
</ItemGroup>

tests/Berrysoft.Workflow.Test/Berrysoft.Workflow.Test.vbproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.2" />
11+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" />
1212
<PackageReference Include="MSTest.TestAdapter" Version="1.3.2" />
1313
<PackageReference Include="MSTest.TestFramework" Version="1.3.2" />
1414
</ItemGroup>

0 commit comments

Comments
 (0)