Skip to content

Commit 67fd6fe

Browse files
committed
Merge
\n\nCommit migrated from dotnet/extensions@33ebb58
2 parents cbe4fae + d224922 commit 67fd6fe

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)