From 4a102fae6f2c583f36a8dcbf579d4f1a05df2955 Mon Sep 17 00:00:00 2001 From: melkisedeath Date: Wed, 17 Jul 2024 18:20:00 +0200 Subject: [PATCH] minor typing edits. --- tests/test_note_array.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/test_note_array.py b/tests/test_note_array.py index 721f3e60..bb439be9 100644 --- a/tests/test_note_array.py +++ b/tests/test_note_array.py @@ -170,9 +170,7 @@ def test_notearray_ts_beats(self): def test_ensure_na_different_divs(self): # check if divs are correctly rescaled when producing a note array from # parts with different divs values - # parts = list(score.iter_parts(load_kern(KERN_TESTFILES[7]))) parts = load_kern(KERN_TESTFILES[7]).parts - # note_arrays = [p.note_array(include_divs_per_quarter= True) for p in parts] merged_note_array = ensure_notearray(parts) for note in merged_note_array[-4:]: self.assertTrue(note["onset_div"] == 2208)