@@ -44,7 +44,7 @@ func TestDispatcher(t *testing.T) {
4444 resp , err := executor .Execute (execution .NewRequest (t .Context (), logInv ))
4545 require .NoError (t , err )
4646
47- _ , x := result .Unwrap (resp .Result ())
47+ _ , x := result .Unwrap (resp .Out ())
4848 require .Nil (t , x )
4949
5050 require .Len (t , messages , 1 )
@@ -61,7 +61,7 @@ func TestDispatcher(t *testing.T) {
6161 resp , err = executor .Execute (execution .NewRequest (t .Context (), echoInv ))
6262 require .NoError (t , err )
6363
64- o , x := result .Unwrap (resp .Result ())
64+ o , x := result .Unwrap (resp .Out ())
6565 require .NotNil (t , o )
6666 require .Nil (t , x )
6767 t .Log (o )
@@ -84,7 +84,7 @@ func TestDispatcher(t *testing.T) {
8484 resp , err := executor .Execute (execution .NewRequest (t .Context (), inv ))
8585 require .NoError (t , err )
8686
87- o , x := result .Unwrap (resp .Result ())
87+ o , x := result .Unwrap (resp .Out ())
8888 require .Nil (t , o )
8989 require .NotNil (t , x )
9090 t .Log (x )
@@ -106,7 +106,7 @@ func TestDispatcher(t *testing.T) {
106106 resp , err := executor .Execute (execution .NewRequest (t .Context (), inv ))
107107 require .NoError (t , err )
108108
109- o , x := result .Unwrap (resp .Result ())
109+ o , x := result .Unwrap (resp .Out ())
110110 require .Nil (t , o )
111111 require .NotNil (t , x )
112112 t .Log (x )
@@ -132,7 +132,7 @@ func TestDispatcher(t *testing.T) {
132132 resp , err := executor .Execute (execution .NewRequest (t .Context (), logInv ))
133133 require .NoError (t , err )
134134
135- o , x := result .Unwrap (resp .Result ())
135+ o , x := result .Unwrap (resp .Out ())
136136 require .Nil (t , o )
137137 require .NotNil (t , x )
138138 t .Log (x )
@@ -157,7 +157,7 @@ func TestDispatcher(t *testing.T) {
157157 resp , err := executor .Execute (execution .NewRequest (t .Context (), logInv ))
158158 require .NoError (t , err )
159159
160- o , x := result .Unwrap (resp .Result ())
160+ o , x := result .Unwrap (resp .Out ())
161161 require .Nil (t , o )
162162 require .NotNil (t , x )
163163 t .Log (x )
0 commit comments