Open rob-miller opened 1 year ago
The test_maxdepth_zero() and test_maxdepth_one() appear to be in error in that they call e.g.
test_maxdepth_zero()
test_maxdepth_one()
Phockup('input', 'output', maxdepth=0)
but in order to make maxdepth work on my unit tests I need something like
Phockup('input', 'output', max_depth=0)
Probably everything should be maxdepth without the underscore as that matches the command option?
maxdepth
I haven't noticed this one. Yes everything should be maxdepth
The
test_maxdepth_zero()
andtest_maxdepth_one()
appear to be in error in that they call e.g.Phockup('input', 'output', maxdepth=0)
but in order to make maxdepth work on my unit tests I need something like
Phockup('input', 'output', max_depth=0)
Probably everything should be
maxdepth
without the underscore as that matches the command option?