# HG changeset patch # User Boris Feld # Date 2018-02-06 10:52:37 # Node ID c839bbee1e130d620e65a72e792614454c727ea3 # Parent a915465a731ee3a8ba6ac65a4d8f61bc797c6725 parseindex: also forward keyword argument in a debug wrapper Otherwise, it gets in the way of a coming refactoring. diff --git a/tests/test-parseindex.t b/tests/test-parseindex.t --- a/tests/test-parseindex.t +++ b/tests/test-parseindex.t @@ -43,8 +43,8 @@ We approximate that by reducing the read > > def opener(*args): > o = vfs.vfs(*args) - > def wrapper(*a): - > f = o(*a) + > def wrapper(*a, **kwargs): + > f = o(*a, **kwargs) > return singlebyteread(f) > return wrapper >