No need to set param with default

This commit is contained in:
Hugo van Kemenade 2020-12-29 21:32:29 +02:00
parent 0999501600
commit 8be8c4efb6
4 changed files with 17 additions and 19 deletions

View file

@ -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