diff options
author | David Robillard <d@drobilla.net> | 2018-01-04 19:34:32 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-01-04 19:34:53 -0500 |
commit | 4cf79685ffb3a0d75e901412f4125590d61959a4 (patch) | |
tree | 5b029254b5f7dbcb6558621e8c01ecdfcfd8e2ca | |
parent | b78b4387f2afe80ffc1e239cc75ca1774a51043d (diff) | |
download | serd-4cf79685ffb3a0d75e901412f4125590d61959a4.tar.gz serd-4cf79685ffb3a0d75e901412f4125590d61959a4.tar.bz2 serd-4cf79685ffb3a0d75e901412f4125590d61959a4.zip |
Fix test suite with Python 2
-rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -374,7 +374,7 @@ def test_suite(ctx, base_uri, testdir, report, isyntax, osyntax, options=''): # Run round-trip tests test_thru(ctx, uri, action, check_path, - ' '.join(thru_options_iter.next()), isyntax, osyntax, options, quiet=True) + ' '.join(next(thru_options_iter)), isyntax, osyntax, options, quiet=True) # Write test report entry if report is not None: |