mirror of
https://github.com/ansible/awx.git
synced 2026-03-09 13:39:27 -02:30
get rid of decorator dependency
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