No need to set param with default
This commit is contained in:
parent
0999501600
commit
8be8c4efb6
4 changed files with 17 additions and 19 deletions
|
@ -94,8 +94,8 @@ class TestPyLastWithLastFm(PyLastTestCase):
|
|||
func = getattr(thing, function_name, None)
|
||||
|
||||
# Act
|
||||
result1 = func(limit=1, cacheable=False, stream=False)
|
||||
result2 = func(limit=1, cacheable=True, stream=False)
|
||||
result1 = func(limit=1, cacheable=False)
|
||||
result2 = func(limit=1, cacheable=True)
|
||||
result3 = list(func(limit=1))
|
||||
|
||||
# Assert
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue