Skip to content

Commit ff0c1b0

Browse files
Remove console logs in tests
1 parent f281628 commit ff0c1b0

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

UnitTests/SessionTest.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -690,8 +690,6 @@ public void TestPossDupFlagTrueRequiresOrigSendingTime_Y()
690690

691691
SendTheMessage(sr);
692692

693-
Console.WriteLine($"MsgLookup Keys: {string.Join(",", _responder.MsgLookup.Keys)}");
694-
695693
Assert.That(_responder.MsgLookup.ContainsKey(QuickFix.Fields.MsgType.REJECT));
696694
Assert.That(_responder.MsgLookup[QuickFix.Fields.MsgType.REJECT].Count == 1);
697695
QuickFix.FIX42.Reject rej =
@@ -737,8 +735,6 @@ public void TestPossDupFlagFalseRequiresOrigSendingTime_Y()
737735
sr.Header.SetField(new QuickFix.Fields.MsgSeqNum(_seqNum)); // so it doesn't fail on MsgSeqNum too low
738736

739737
SendTheMessage(sr);
740-
741-
Console.WriteLine($"MsgLookup Keys: {string.Join(",", _responder.MsgLookup.Keys)}");
742738

743739
Assert.That(_responder.MsgLookup.ContainsKey(QuickFix.Fields.MsgType.REJECT), Is.False);
744740
}
@@ -760,7 +756,6 @@ public void TestPossDupFlagFalseRequiresOrigSendingTime_N()
760756

761757
SendTheMessage(sr);
762758

763-
Console.WriteLine($"MsgLookup Keys: {string.Join(",", _responder.MsgLookup.Keys)}");
764759
Assert.That(_responder.MsgLookup.ContainsKey(QuickFix.Fields.MsgType.REJECT), Is.False);
765760
}
766761

0 commit comments

Comments
 (0)