File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -163,7 +163,7 @@ func TestRequestRequestSruServerFail(t *testing.T) {
163163 if err != nil {
164164 t .Errorf ("failed to find ill transaction by requester request id %v" , reqId )
165165 }
166- return illTrans .LastSupplierStatus .String == "" &&
166+ return illTrans .LastSupplierStatus .String == "Unfilled " &&
167167 illTrans .LastRequesterAction .String == "Request"
168168 })
169169 assert .Equal (t , "Unfilled" , illTrans .LastSupplierStatus .String )
@@ -194,10 +194,10 @@ func TestRequestRequestSruServerUnfilled(t *testing.T) {
194194 if err != nil {
195195 t .Errorf ("failed to find ill transaction by requester request id %v" , reqId )
196196 }
197- return illTrans .LastSupplierStatus .String == "" &&
197+ return illTrans .LastSupplierStatus .String == "Unfilled " &&
198198 illTrans .LastRequesterAction .String == "Request"
199199 })
200- assert .Equal (t , "" , illTrans .LastSupplierStatus .String )
200+ assert .Equal (t , "Unfilled " , illTrans .LastSupplierStatus .String )
201201 assert .Equal (t , "Request" , illTrans .LastRequesterAction .String )
202202 exp := "NOTICE, request-received = SUCCESS\n " +
203203 "TASK, locate-suppliers = SUCCESS\n " +
You can’t perform that action at this time.
0 commit comments