Renamed iter back to walk

This commit is contained in:
Jamie Hardt
2022-11-26 18:26:58 -08:00
parent af5c83b8fc
commit 4e061a85f1
3 changed files with 4 additions and 4 deletions

View File

@@ -8,7 +8,7 @@ class TestWalk(unittest.TestCase):
info = wavinfo.WavInfoReader(test_file)
tested_data , tested_format = False, False
for scope, key, value in info.iter():
for scope, key, value in info.walk():
if scope == 'fmt':
if key == 'channel_count':
tested_format = True