Skip to content

Commit 14ccdd2

Browse files
rhysparrygfyoung
authored andcommitted
TST: Fix skipping test due to lack of connectivity (#22598)
`.format()` was expecting keyword arguments. Updated to match other skips nearby.
1 parent 4612312 commit 14ccdd2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/util/testing.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2394,7 +2394,7 @@ def wrapper(*args, **kwargs):
23942394
raise
23952395
else:
23962396
skip("Skipping test due to lack of connectivity"
2397-
" and error {error}".format(e))
2397+
" and error {error}".format(error=e))
23982398

23992399
return wrapper
24002400

0 commit comments

Comments
 (0)