Skip to content

Commit

Permalink
Fix test that was incorrect.
Browse files Browse the repository at this point in the history
  • Loading branch information
twitchax committed Apr 7, 2023
1 parent c39a099 commit 2542a0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/chord.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1358,7 +1358,7 @@ mod tests {

assert_eq!(Chord::new(DFlat).scale(), vec![DFlat, EFlat, F, GFlat, AFlat, BFlat, CFive]);
assert_eq!(Chord::new(DFlat).seven().scale(), vec![DFlat, EFlat, F, GFlat, AFlat, BFlat, CFlatFive]);
assert_eq!(Chord::new(DFlat).dim().scale(), vec![DFlat, EFlat, FFlat, GFlat, ADoubleFlat, BDoubleFlat, CDoubleFlat, CFive]);
assert_eq!(Chord::new(DFlat).dim().scale(), vec![DFlat, EFlat, FFlat, GFlat, ADoubleFlat, BDoubleFlat, CDoubleFlatFive, CFive]);
}

#[test]
Expand Down

0 comments on commit 2542a0f

Please sign in to comment.