File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -6,10 +6,12 @@ External Changes to be made:
6
6
7
7
8
8
THESE MAY REFER TO THE ACTUAL API
9
- ipfshttpclient/client.py All occurrences
10
9
ipfshttpclient/encoding.py Ln 392
11
10
ipfshttpclient/http.py Ln 2,4,134
12
11
ipfshttpclient/version.py Ln 7
12
+
13
+ THESE MAY REFER TO THE ACTUAL API
14
+ ipfshttpclient/client.py All occurrences
13
15
test/run-tests.py Ln 68,102
14
16
15
17
Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ def setUp(self):
142
142
self .client = ipfshttpclient .http .HTTPClient (
143
143
'localhost' ,
144
144
5001 ,
145
- 'http_client /v0' )
145
+ 'api /v0' )
146
146
147
147
def test_successful_request (self ):
148
148
"""Tests that a successful http request returns the proper message."""
@@ -221,7 +221,7 @@ def test_session(self):
221
221
222
222
223
223
def test_stream_close (mocker ):
224
- client = ipfshttpclient .http .HTTPClient ("localhost" , 5001 , "http_client /v0" )
224
+ client = ipfshttpclient .http .HTTPClient ("localhost" , 5001 , "api /v0" )
225
225
mocker .patch ("ipfshttpclient.http._notify_stream_iter_closed" )
226
226
with HTTMock (return_okay ):
227
227
with client .request ("/okay" , stream = True ) as response_iter :
You can’t perform that action at this time.
0 commit comments