Skip to content

Commit

Permalink
dotnet format
Browse files Browse the repository at this point in the history
  • Loading branch information
prvyk committed Jan 24, 2025
1 parent c8aa055 commit dd36e1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/Garnet.test/RespSetTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1399,7 +1399,7 @@ public void SetNXCorrectResponse()
var response = lightClientRequest.SendCommand("SETNX key1 2");
var expectedResponse = ":1\r\n";
ClassicAssert.AreEqual(expectedResponse, response.AsSpan().Slice(0, expectedResponse.Length).ToArray());

// Setnx command should fail since key exists
response = lightClientRequest.SendCommand("SETNX key1 3");
expectedResponse = ":0\r\n";
Expand Down

0 comments on commit dd36e1e

Please sign in to comment.