##// END OF EJS Templates
Sort directory contents in test before assertion...
Sort directory contents in test before assertion Should fix recent test failures, but I can't replicate failure on my computer, so it's not clear that it's fixed.

File last commit:

r15516:43a46eb6
r17787:6d081d23
Show More
test_decorators.py
9 lines | 170 B | text/x-python | PythonLexer
from IPython.utils import decorators
def test_flag_calls():
@decorators.flag_calls
def f():
pass
assert not f.called
f()
assert f.called