Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikus1993 committed Feb 25, 2024
1 parent 9f19b5b commit 70c8b33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,4 @@ internal interface IRedisObjectDeserializer

[JsonSourceGenerationOptions(PropertyNamingPolicy = JsonKnownNamingPolicy.CamelCase, DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull)]
[JsonSerializable(typeof(RedisCustomerBasket))]
internal sealed partial class RedisJsonContext : JsonSerializerContext
{

}
internal sealed partial class RedisJsonContext : JsonSerializerContext;
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class RedisExtensionsTests
[Theory]
[InlineData("some data", true, "some data")]
[InlineData(null, false, null)]
public void TestTryGetValue(string data, bool expectedResult, string expectedValue)
public void TestTryGetValue(string? data, bool expectedResult, string? expectedValue)
{
var redisValue = new RedisValue(data);
var subject = redisValue.TryGetValue(out var result);
Expand Down

0 comments on commit 70c8b33

Please sign in to comment.