File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
quickfixj-core/src/test/java/quickfix Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 111111import quickfix .field .StrikePrice ;
112112import quickfix .field .Symbol ;
113113import quickfix .field .TargetCompID ;
114+ import quickfix .field .TargetSubID ;
114115import quickfix .field .Text ;
115116import quickfix .field .TotNoOrders ;
116117import quickfix .field .TradeDate ;
@@ -1515,8 +1516,8 @@ public void shouldReturnFixSpecificHeader() throws FieldNotFound {
15151516 NewOrderSingle order = new NewOrderSingle ();
15161517 assertSame (quickfix .fix42 .Message .Header .class , order .getHeader ().getClass ());
15171518
1518- order .set (new Signature ("foo" ));
1519- assertEquals (order .getSignature ().getValue (), "foo" );
1519+ order .getHeader (). set (new TargetSubID ("foo" ));
1520+ assertEquals (order .getHeader (). getTargetSubID ().getValue (), "foo" );
15201521 }
15211522
15221523 private void assertHeaderField (Message message , String expectedValue , int field )
You can’t perform that action at this time.
0 commit comments