File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ def test_mv_same_paths(m):
111
111
assert m .exists ("src/file.txt" )
112
112
113
113
114
- def test_rm_no_psuedo_dir (m ):
114
+ def test_rm_no_pseudo_dir (m ):
115
115
m .touch ("/dir1/dir2/file" )
116
116
m .rm ("/dir1" , recursive = True )
117
117
assert not m .exists ("/dir1/dir2/file" )
Original file line number Diff line number Diff line change @@ -254,7 +254,7 @@ def get_filesystem_class(protocol):
254
254
def _import_class (cls , minv = None ):
255
255
"""Take a string FQP and return the imported class or identifier
256
256
257
- clas is of the form "package.module.klass" or "package.module:subobject.klass"
257
+ cls is of the form "package.module.klass" or "package.module:subobject.klass"
258
258
"""
259
259
if ":" in cls :
260
260
mod , name = cls .rsplit (":" , 1 )
Original file line number Diff line number Diff line change @@ -284,7 +284,7 @@ def read_block(
284
284
found_end_delim = seek_delimiter (f , delimiter , 2 ** 16 )
285
285
end = f .tell ()
286
286
287
- # Adjust split location to before delimiter iff seek found the
287
+ # Adjust split location to before delimiter if seek found the
288
288
# delimiter sequence, not start or end of file.
289
289
if found_start_delim and split_before :
290
290
start -= len (delimiter )
You can’t perform that action at this time.
0 commit comments