File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2403,7 +2403,7 @@ def can_connect(url, error_classes=None):
2403
2403
@optional_args
2404
2404
def network (
2405
2405
t ,
2406
- url = "http ://www.google.com" ,
2406
+ url = "https ://www.google.com" ,
2407
2407
raise_on_error = _RAISE_NETWORK_ERROR_DEFAULT ,
2408
2408
check_before_test = False ,
2409
2409
error_classes = None ,
@@ -2427,7 +2427,7 @@ def network(
2427
2427
The test requiring network connectivity.
2428
2428
url : path
2429
2429
The url to test via ``pandas.io.common.urlopen`` to check
2430
- for connectivity. Defaults to 'http ://www.google.com'.
2430
+ for connectivity. Defaults to 'https ://www.google.com'.
2431
2431
raise_on_error : bool
2432
2432
If True, never catches errors.
2433
2433
check_before_test : bool
@@ -2471,7 +2471,7 @@ def network(
2471
2471
2472
2472
You can specify alternative URLs::
2473
2473
2474
- >>> @network("http ://www.yahoo.com")
2474
+ >>> @network("https ://www.yahoo.com")
2475
2475
... def test_something_with_yahoo():
2476
2476
... raise IOError("Failure Message")
2477
2477
>>> test_something_with_yahoo()
You can’t perform that action at this time.
0 commit comments