Skip to content

Commit

Permalink
Avoid needless assertion on G#
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtylerwalls committed May 9, 2022
1 parent c034241 commit 3b75e96
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/moduleTests/stream.ts
Original file line number Diff line number Diff line change
Expand Up @@ -559,8 +559,7 @@ export default function tests() {
const c = new music21.chord.Chord('G# G');
m.append(c);
m.makeAccidentals({inPlace: true});
assert.ok(c.pitches[0].accidental.displayStatus);
assert.ok(c.pitches[1].accidental.displayStatus);
assert.ok(c.pitches[0].accidental.displayStatus); // G comes first
});

test('music21.stream.Stream makeBeams with stemDirection', assert => {
Expand Down

0 comments on commit 3b75e96

Please sign in to comment.