mirror of
https://github.com/ansible/awx.git
synced 2026-03-24 12:25:01 -02:30
Merge pull request #2547 from AlanCoding/decorator
Get rid of decorator dependency Reviewed-by: https://github.com/softwarefactory-project-zuul[bot]
This commit is contained in:
@@ -154,12 +154,11 @@ def test_memoize_delete(memoized_function, mock_cache):
|
||||
|
||||
|
||||
def test_memoize_parameter_error():
|
||||
@common.memoize(cache_key='foo', track_function=True)
|
||||
def fn():
|
||||
return
|
||||
|
||||
with pytest.raises(common.IllegalArgumentError):
|
||||
fn()
|
||||
@common.memoize(cache_key='foo', track_function=True)
|
||||
def fn():
|
||||
return
|
||||
|
||||
|
||||
def test_extract_ansible_vars():
|
||||
|
||||
Reference in New Issue
Block a user