Skip to content

Commit

Permalink
other bad commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Confusingboat committed Apr 2, 2024
1 parent f8da15d commit 20bff59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/Distributed.Collections.Redis/RedisSerializer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ internal class DefaultRedisSerializer : IRedisSerializer
{
private static readonly Lazy<DefaultRedisSerializer> _instance = new(() => new DefaultRedisSerializer());

public static DefaultRedisSerializer Instance => _instance.Value
public static DefaultRedisSerializer Instance => _instance.Value;

private DefaultRedisSerializer() { }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ public async Task LongCountAsync_should_return_1_when_hash_set_has_one_item()
[Fact]
public async Task ClearAsync_should_remove_all_items()
{
throw new NotImplementedException();
// Arrange
await HashSet.AddAsync(TestValues[0]);

Check warning on line 184 in tests/Distributed.Collections.Tests/DistributedHashSetTests.cs

View workflow job for this annotation

GitHub Actions / build_and_test

Unreachable code detected

Check warning on line 184 in tests/Distributed.Collections.Tests/DistributedHashSetTests.cs

View workflow job for this annotation

GitHub Actions / build_and_test

Unreachable code detected

Expand Down

0 comments on commit 20bff59

Please sign in to comment.