Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 5c46c30

Browse files
committed
Remove SS.Common ref from Console.Tests
1 parent 2a75bba commit 5c46c30

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

tests/Console.Tests/Console.Tests.csproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,6 @@
3838
<Reference Include="ServiceStack.Client">
3939
<HintPath>..\..\lib\tests\ServiceStack.Client.dll</HintPath>
4040
</Reference>
41-
<Reference Include="ServiceStack.Common, Version=4.0.0.0, Culture=neutral, processorArchitecture=MSIL">
42-
<SpecificVersion>False</SpecificVersion>
43-
<HintPath>..\..\..\Test\lib\ServiceStack.Common.dll</HintPath>
44-
</Reference>
4541
<Reference Include="ServiceStack.Interfaces">
4642
<HintPath>..\..\lib\ServiceStack.Interfaces.dll</HintPath>
4743
</Reference>

tests/Console.Tests/HashStressTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public void Execute(string ipAddress, int noOfThreads = 64)
6363
{
6464
threads.Add(new Thread(WorkerLoop));
6565
}
66-
threads.Each(t => t.Start());
66+
threads.ForEach(t => t.Start());
6767

6868
"Press Enter to Stop...".Print();
6969
Console.ReadLine();

0 commit comments

Comments
 (0)