Skip to content

Commit

Permalink
fix: missing paren
Browse files Browse the repository at this point in the history
  • Loading branch information
malandis committed Nov 12, 2024
1 parent 69f4e29 commit 74a3fdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Integration/Momento.Sdk.Tests/Topics/TopicTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ public async Task PublishAndSubscribe_String_Succeeds()
{
var textMessage = (TopicMessage.Text)consumedMessages[i];
Assert.Equal(textMessage.Value, valuesToSend[i]);
Assert.Equal(textMessage.TopicSequenceNumber, checked((ulong)(i + 1));
Assert.Equal(textMessage.TopicSequenceNumber, checked((ulong)(i + 1)));
}
}

Expand Down

0 comments on commit 74a3fdd

Please sign in to comment.