Skip to content

Commit 6014660

Browse files
authored
Merge pull request #3541 from dotnet-maestro-bot/merge/release/2.1-to-release/3.1
[automated] Merge branch 'release/2.1' => 'release/3.1'
2 parents 5dc3e89 + 74bb248 commit 6014660

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Caching/Memory/test/MemoryCacheSetAndRemoveTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -679,8 +679,8 @@ public void TryGetValueFromCacheWithNullKeyThrows()
679679
public void GetOrCreateFromCacheWithNullKeyThrows()
680680
{
681681
var cache = CreateCache();
682-
Assert.Throws<ArgumentNullException>(() => cache.GetOrCreate<object>(null, null))
683-
; }
682+
Assert.Throws<ArgumentNullException>(() => cache.GetOrCreate<object>(null, null));
683+
}
684684

685685
[Fact]
686686
public async Task GetOrCreateAsyncFromCacheWithNullKeyThrows()
@@ -695,4 +695,4 @@ private class TestKey
695695
public override int GetHashCode() => 0;
696696
}
697697
}
698-
}
698+
}

0 commit comments

Comments
 (0)