File tree Expand file tree Collapse file tree 5 files changed +9
-6
lines changed Expand file tree Collapse file tree 5 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import (
21
21
22
22
"github.com/quickfixgo/quickfix/config"
23
23
24
- proxyproto "github.com/armon /go-proxyproto"
24
+ proxyproto "github.com/pires /go-proxyproto"
25
25
"github.com/stretchr/testify/assert"
26
26
)
27
27
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ import (
25
25
"strconv"
26
26
"sync"
27
27
28
- proxyproto "github.com/armon /go-proxyproto"
28
+ proxyproto "github.com/pires /go-proxyproto"
29
29
30
30
"github.com/quickfixgo/quickfix/config"
31
31
)
Original file line number Diff line number Diff line change 5
5
require (
6
6
github.com/armon/go-proxyproto v0.1.0
7
7
github.com/mattn/go-sqlite3 v1.14.18
8
+ github.com/pires/go-proxyproto v0.7.0
8
9
github.com/pkg/errors v0.9.1
9
10
github.com/shopspring/decimal v1.3.1
10
11
github.com/stretchr/testify v1.8.4
Original file line number Diff line number Diff line change @@ -23,6 +23,8 @@ github.com/mattn/go-sqlite3 v1.14.18/go.mod h1:2eHXhiwb8IkHr+BDWZGa96P6+rkvnG63S
23
23
github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe /go.mod h1:wL8QJuTMNUDYhXwkmfOly8iTdp5TEcJFWZD2D7SIkUc =
24
24
github.com/montanaflynn/stats v0.6.6 h1:Duep6KMIDpY4Yo11iFsvyqJDyfzLF9+sndUKT+v64GQ =
25
25
github.com/montanaflynn/stats v0.6.6 /go.mod h1:etXPPgVO6n31NxCd9KQUMvCM+ve0ruNzt6R8Bnaayow =
26
+ github.com/pires/go-proxyproto v0.7.0 h1:IukmRewDQFWC7kfnb66CSomk2q/seBuilHBYFwyq0Hs =
27
+ github.com/pires/go-proxyproto v0.7.0 /go.mod h1:Vz/1JPY/OACxWGQNIRY2BeyDmpoaWmEP40O9LbuiFR4 =
26
28
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4 =
27
29
github.com/pkg/errors v0.9.1 /go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0 =
28
30
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM =
Original file line number Diff line number Diff line change @@ -928,10 +928,10 @@ func tcMultipleRepeatingGroupFields() validateTest {
928
928
dict , _ := datadictionary .Parse ("spec/FIX43.xml" )
929
929
validator := NewValidator (defaultValidatorSettings , dict , nil )
930
930
return validateTest {
931
- TestName : "Multiple repeating group fields in a message" ,
932
- Validator : validator ,
933
- MessageBytes : []byte ("8=FIX.4.39=17635=D34=249=TW52=20140329-22:38:4556=ISLD11=ID453=2448=PARTYID452=3523=SUBID448=PARTYID2452=378=179=ACCOUNT80=121=140=154=138=20055=INTC60=20140329-22:38:4510=178" ),
934
- DoNotExpectReject : true ,
931
+ TestName : "Multiple repeating group fields in a message" ,
932
+ Validator : validator ,
933
+ MessageBytes : []byte ("8=FIX.4.39=17635=D34=249=TW52=20140329-22:38:4556=ISLD11=ID453=2448=PARTYID452=3523=SUBID448=PARTYID2452=378=179=ACCOUNT80=121=140=154=138=20055=INTC60=20140329-22:38:4510=178" ),
934
+ DoNotExpectReject : true ,
935
935
}
936
936
}
937
937
You can’t perform that action at this time.
0 commit comments