Files
mayan-edms/mayan/apps/common/tests/decorators.py
Roberto Rosario 914c5e7146 Code cleanups.
2017-01-28 22:56:52 -04:00

6 lines
163 B
Python

def skip_file_descriptor_check(func):
def func_wrapper(item):
item._skip_file_descriptor_test = True
return func(item)
return func_wrapper