@@ -44,7 +44,7 @@ func TestRemoteClientCustomHeaders(t *testing.T) {
4444 "Authorization" : "Bearer custom-token" ,
4545 }
4646
47- client := newRemoteClient (server .URL , "sse" , expectedHeaders , NewInMemoryTokenStore (), false )
47+ client := newRemoteClient (server .URL , "sse" , expectedHeaders , NewInMemoryTokenStore ())
4848
4949 ctx , cancel := context .WithTimeout (t .Context (), 2 * time .Second )
5050 defer cancel ()
@@ -94,7 +94,7 @@ func TestRemoteClientHeadersWithStreamable(t *testing.T) {
9494 "X-Custom-Auth" : "custom-auth-value" ,
9595 }
9696
97- client := newRemoteClient (server .URL , "streamable" , expectedHeaders , NewInMemoryTokenStore (), false )
97+ client := newRemoteClient (server .URL , "streamable" , expectedHeaders , NewInMemoryTokenStore ())
9898
9999 ctx , cancel := context .WithTimeout (t .Context (), 2 * time .Second )
100100 defer cancel ()
@@ -137,7 +137,7 @@ func TestRemoteClientNoHeaders(t *testing.T) {
137137 defer server .Close ()
138138
139139 // Create remote client without custom headers (nil)
140- client := newRemoteClient (server .URL , "sse" , nil , NewInMemoryTokenStore (), false )
140+ client := newRemoteClient (server .URL , "sse" , nil , NewInMemoryTokenStore ())
141141
142142 ctx , cancel := context .WithTimeout (t .Context (), 2 * time .Second )
143143 defer cancel ()
@@ -176,7 +176,7 @@ func TestRemoteClientEmptyHeaders(t *testing.T) {
176176 defer server .Close ()
177177
178178 // Create remote client with empty headers map
179- client := newRemoteClient (server .URL , "sse" , map [string ]string {}, NewInMemoryTokenStore (), false )
179+ client := newRemoteClient (server .URL , "sse" , map [string ]string {}, NewInMemoryTokenStore ())
180180
181181 ctx , cancel := context .WithTimeout (t .Context (), 2 * time .Second )
182182 defer cancel ()
0 commit comments