We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 120d0ed commit 07d0a79Copy full SHA for 07d0a79
src/chord/chord_shape.rs
@@ -118,14 +118,12 @@ impl ChordShapeSet {
118
ChordShape::new("A", [0, 1, 0, 0], ["m7", "M3", "P5", "P1"]),
119
ChordShape::new("G", [0, 2, 1, 2], ["P1", "P5", "m7", "M3"]),
120
ChordShape::new("E", [1, 2, 0, 2], ["M3", "m7", "P1", "P5"]),
121
- ChordShape::new("D", [2, 0, 2, 0], ["P5", "m7", "M3", "P5"]),
122
],
123
MinorSeventh => vec![
124
ChordShape::new("C#", [1, 1, 0, 2], ["P5", "P1", "m3", "m7"]),
125
ChordShape::new("A", [0, 0, 0, 0], ["m7", "m3", "P5", "P1"]),
126
ChordShape::new("G", [0, 2, 1, 1], ["P1", "P5", "m7", "m3"]),
127
ChordShape::new("E", [0, 2, 0, 2], ["m3", "m7", "P1", "P5"]),
128
- ChordShape::new("D", [2, 0, 1, 0], ["P5", "m7", "m3", "P5"]),
129
130
MajorSeventh => vec![
131
ChordShape::new("C", [0, 0, 0, 2], ["P5", "P1", "M3", "M7"]),
tests/ukebox.rs
@@ -472,7 +472,6 @@ fn test_dominant_seventh_chords(tuning: Tuning) -> Result<(), Box<dyn std::error
472
TestConfig::new(ct, 9, 2, [0, 1, 0, 0], tuning),
473
TestConfig::new(ct, 7, 1, [0, 2, 1, 2], tuning),
474
TestConfig::new(ct, 4, 1, [1, 2, 0, 2], tuning),
475
- TestConfig::new(ct, 2, 1, [2, 0, 2, 0], tuning),
476
];
477
478
run_tests(test_configs)
@@ -492,7 +491,6 @@ fn test_minor_seventh_chords(tuning: Tuning) -> Result<(), Box<dyn std::error::E
492
491
TestConfig::new(ct, 9, 2, [0, 0, 0, 0], tuning),
493
TestConfig::new(ct, 7, 1, [0, 2, 1, 1], tuning),
494
TestConfig::new(ct, 4, 1, [0, 2, 0, 2], tuning),
495
- TestConfig::new(ct, 2, 1, [2, 0, 1, 0], tuning),
496
497
498
0 commit comments