Skip to content

Commit 85d814c

Browse files
committed
Minor
1 parent 816894e commit 85d814c

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

tests/ZiggyCreatures.FusionCache.Tests/FusionHybridCacheTests/HybridL1L2Tests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -782,7 +782,7 @@ public async Task FailSafeMaxDurationIsRespectedAsync(SerializerType serializerT
782782
var cache = new FusionHybridCache(fc);
783783

784784
await cache.SetAsync<int>(keyFoo, 21, cancellationToken: TestContext.Current.CancellationToken);
785-
TestOutput.WriteLine($"-- SET AT {DateTime.UtcNow}, THEO PHY EXP AT {DateTime.UtcNow + maxDuration}");
785+
TestOutput.WriteLine($"-- SET AT {DateTime.UtcNow}, EXP AT {DateTime.UtcNow + maxDuration}");
786786

787787
var didThrow = false;
788788
var sw = Stopwatch.StartNew();

tests/ZiggyCreatures.FusionCache.Tests/FusionHybridCacheTests/HybridL1Tests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,7 @@ public async Task FailSafeMaxDurationIsRespectedAsync()
612612
var cache = new FusionHybridCache(fc);
613613

614614
await cache.SetAsync<int>("foo", 21, cancellationToken: TestContext.Current.CancellationToken);
615-
TestOutput.WriteLine($"-- SET AT {DateTime.UtcNow}, THEO PHY EXP AT {DateTime.UtcNow + maxDuration}");
615+
TestOutput.WriteLine($"-- SET AT {DateTime.UtcNow}, EXP AT {DateTime.UtcNow + maxDuration}");
616616

617617
var didThrow = false;
618618
var sw = Stopwatch.StartNew();

tests/ZiggyCreatures.FusionCache.Tests/L1L2Tests_Async.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -734,7 +734,7 @@ public async Task FailSafeMaxDurationIsRespectedAsync(SerializerType serializerT
734734
fusionCache.SetupDistributedCache(distributedCache, TestsUtils.GetSerializer(serializerType));
735735

736736
await fusionCache.SetAsync<int>(keyFoo, 21, token: TestContext.Current.CancellationToken);
737-
TestOutput.WriteLine($"-- SET AT {DateTime.UtcNow}, THEO PHY EXP AT {DateTime.UtcNow + maxDuration}");
737+
TestOutput.WriteLine($"-- SET AT {DateTime.UtcNow}, EXP AT {DateTime.UtcNow + maxDuration}");
738738

739739
var didThrow = false;
740740
var sw = Stopwatch.StartNew();

tests/ZiggyCreatures.FusionCache.Tests/L1L2Tests_Sync.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -733,7 +733,7 @@ public void FailSafeMaxDurationIsRespected(SerializerType serializerType)
733733
fusionCache.SetupDistributedCache(distributedCache, TestsUtils.GetSerializer(serializerType));
734734

735735
fusionCache.Set<int>(keyFoo, 21, token: TestContext.Current.CancellationToken);
736-
TestOutput.WriteLine($"-- SET AT {DateTime.UtcNow}, THEO PHY EXP AT {DateTime.UtcNow + maxDuration}");
736+
TestOutput.WriteLine($"-- SET AT {DateTime.UtcNow}, EXP AT {DateTime.UtcNow + maxDuration}");
737737

738738
var didThrow = false;
739739
var sw = Stopwatch.StartNew();

tests/ZiggyCreatures.FusionCache.Tests/L1Tests_Async.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -968,7 +968,7 @@ public async Task FailSafeMaxDurationIsRespectedAsync()
968968
using var fusionCache = new FusionCache(options, logger: CreateXUnitLogger<FusionCache>());
969969

970970
await fusionCache.SetAsync<int>("foo", 21, token: TestContext.Current.CancellationToken);
971-
TestOutput.WriteLine($"-- SET AT {DateTime.UtcNow}, THEO PHY EXP AT {DateTime.UtcNow + maxDuration}");
971+
TestOutput.WriteLine($"-- SET AT {DateTime.UtcNow}, EXP AT {DateTime.UtcNow + maxDuration}");
972972

973973
var didThrow = false;
974974
var sw = Stopwatch.StartNew();

tests/ZiggyCreatures.FusionCache.Tests/L1Tests_Sync.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -969,7 +969,7 @@ public void FailSafeMaxDurationIsRespected()
969969
using var fusionCache = new FusionCache(options, logger: CreateXUnitLogger<FusionCache>());
970970

971971
fusionCache.Set<int>("foo", 21, token: TestContext.Current.CancellationToken);
972-
TestOutput.WriteLine($"-- SET AT {DateTime.UtcNow}, THEO PHY EXP AT {DateTime.UtcNow + maxDuration}");
972+
TestOutput.WriteLine($"-- SET AT {DateTime.UtcNow}, EXP AT {DateTime.UtcNow + maxDuration}");
973973

974974
var didThrow = false;
975975
var sw = Stopwatch.StartNew();

0 commit comments

Comments
 (0)