Skip to content

Commit 6c7c975

Browse files
rhysparryaeltanawy
authored andcommitted
TST: Fix skipping test due to lack of connectivity (pandas-dev#22598)
`.format()` was expecting keyword arguments. Updated to match other skips nearby.
1 parent bdca5e9 commit 6c7c975

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)