Skip to content

Commit 560be7b

Browse files
committed
Cleaned up test
1 parent 831b932 commit 560be7b

File tree

13 files changed

+1
-79
lines changed

13 files changed

+1
-79
lines changed

.idea/.idea.Foundatio.All/.idea/.gitignore

-10
This file was deleted.

.idea/.idea.Foundatio.All/.idea/.name

-1
This file was deleted.

.idea/.idea.Foundatio.All/.idea/encodings.xml

-4
This file was deleted.

.idea/.idea.Foundatio.All/.idea/indexLayout.xml

-8
This file was deleted.

.idea/.idea.Foundatio.All/.idea/misc.xml

-6
This file was deleted.

.idea/.idea.Foundatio.All/.idea/projectSettingsUpdater.xml

-6
This file was deleted.

.idea/.idea.Foundatio.All/.idea/vcs.xml

-6
This file was deleted.

.idea/.idea.Foundatio/.idea/codeStyles/codeStyleConfig.xml

-5
This file was deleted.

.idea/.idea.Foundatio/.idea/encodings.xml

-4
This file was deleted.

.idea/.idea.Foundatio/.idea/indexLayout.xml

-8
This file was deleted.

.idea/.idea.Foundatio/.idea/projectSettingsUpdater.xml

-6
This file was deleted.

.idea/.idea.Foundatio/.idea/vcs.xml

-6
This file was deleted.

tests/Foundatio.Tests/Locks/InMemoryLockTests.cs

+1-9
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
using Foundatio.Caching;
44
using Foundatio.Lock;
55
using Foundatio.Messaging;
6-
using Foundatio.Utility;
7-
using Microsoft.Extensions.Logging;
86
using Xunit;
97
using Xunit.Abstractions;
108

@@ -34,10 +32,7 @@ protected override ILockProvider GetLockProvider()
3432
[Fact]
3533
public override Task CanAcquireAndReleaseLockAsync()
3634
{
37-
using (TestSystemClock.Install())
38-
{
39-
return base.CanAcquireAndReleaseLockAsync();
40-
}
35+
return base.CanAcquireAndReleaseLockAsync();
4136
}
4237

4338
[Fact]
@@ -85,9 +80,6 @@ public override Task CanAcquireMultipleScopedResources()
8580
[Fact]
8681
public override Task WillThrottleCallsAsync()
8782
{
88-
Log.SetLogLevel<InMemoryCacheClient>(LogLevel.Trace);
89-
Log.SetLogLevel<InMemoryMessageBus>(LogLevel.Trace);
90-
9183
return base.WillThrottleCallsAsync();
9284
}
9385

0 commit comments

Comments
 (0)