Skip to content

Commit

Permalink
fix failing unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
hlibman-connamara committed Dec 31, 2024
1 parent ed692bd commit 5cff597
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions QuickFIXn/Store/FileStore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,7 @@ public void IncrNextTargetMsgSeqNum()

private void SetSeqNum()
{
_seqNumsFile.Seek(0, System.IO.SeekOrigin.Begin);
using (System.IO.StreamWriter writer = new System.IO.StreamWriter(_seqNumsFile, leaveOpen: true))
{
writer.Write(NextSenderMsgSeqNum.ToString("D20") + " : " + NextTargetMsgSeqNum.ToString("D20") + " ");
Expand Down

0 comments on commit 5cff597

Please sign in to comment.