Skip to content

Commit

Permalink
minor typo correction.
Browse files Browse the repository at this point in the history
  • Loading branch information
manoskary committed Sep 20, 2023
1 parent baa2fee commit a2e52b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_cross_staff_beaming.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def test_cross_staff_single_part_musicxml(self):
cross_staff_mask = (note_array["pitch"] > 52) & (note_array["pitch"] < 72)
note_array_staff = note_array[cross_staff_mask]["staff"]
expected_voice = np.ones(len(note_array_staff), dtype=int)
note_array_voice = note_array[[cross_staff_mask]]["voice"]
note_array_voice = note_array[cross_staff_mask]["voice"]
self.assertTrue(np.all(note_array_staff == expected_staff))
self.assertTrue(np.all(note_array_voice == expected_voice))

0 comments on commit a2e52b8

Please sign in to comment.