@@ -248,7 +248,7 @@ def test_copy_with_no_reply_yet(self):
248248
249249 def test_search_provider_change (self ):
250250 _read_until (self .q , "> " )
251- _send (self .process , "/search_provider " )
251+ _send (self .process , "/provider_search " )
252252 out , found = _read_until (self .q , "Select search provider" , timeout = 8 )
253253 self .assertTrue (found , f"Search provider prompt not found. Got: { out !r} " )
254254 _send (self .process , "2" ) # select startpage
@@ -258,7 +258,7 @@ def test_search_provider_change(self):
258258
259259 def test_search_provider_keep_current (self ):
260260 _read_until (self .q , "> " )
261- _send (self .process , "/search_provider " )
261+ _send (self .process , "/provider_search " )
262262 _read_until (self .q , "Select search provider" , timeout = 8 )
263263 _send (self .process , "" ) # press Enter to keep current
264264 out , found = _read_until (self .q , "> " , timeout = 8 )
@@ -267,7 +267,7 @@ def test_search_provider_keep_current(self):
267267
268268 def test_search_provider_invalid_selection (self ):
269269 _read_until (self .q , "> " )
270- _send (self .process , "/search_provider " )
270+ _send (self .process , "/provider_search " )
271271 _read_until (self .q , "Select search provider" , timeout = 8 )
272272 _send (self .process , "99" ) # out of range
273273 out , found = _read_until (self .q , "> " , timeout = 8 )
@@ -276,7 +276,7 @@ def test_search_provider_invalid_selection(self):
276276
277277 def test_search_provider_non_digit (self ):
278278 _read_until (self .q , "> " )
279- _send (self .process , "/search_provider " )
279+ _send (self .process , "/provider_search " )
280280 _read_until (self .q , "Select search provider" , timeout = 8 )
281281 _send (self .process , "bad" )
282282 out , found = _read_until (self .q , "> " , timeout = 8 )
0 commit comments