@@ -202,9 +202,9 @@ impl FromStr for Chord {
202202mod tests {
203203 #![ allow( clippy:: many_single_char_names) ]
204204 use super :: * ;
205- use rstest:: rstest_parametrize ;
205+ use rstest:: rstest ;
206206
207- #[ rstest_parametrize (
207+ #[ rstest (
208208 chord,
209209 case( "Z" ) ,
210210 case( "c" ) ,
@@ -219,7 +219,7 @@ mod tests {
219219 assert ! ( Chord :: from_str( chord) . is_err( ) )
220220 }
221221
222- #[ rstest_parametrize (
222+ #[ rstest (
223223 chord,
224224 root,
225225 third,
@@ -251,7 +251,7 @@ mod tests {
251251 assert_eq ! ( c. chord_type, ChordType :: Major ) ;
252252 }
253253
254- #[ rstest_parametrize (
254+ #[ rstest (
255255 chord,
256256 root,
257257 third,
@@ -283,7 +283,7 @@ mod tests {
283283 assert_eq ! ( c. chord_type, ChordType :: Minor ) ;
284284 }
285285
286- #[ rstest_parametrize (
286+ #[ rstest (
287287 chord,
288288 root,
289289 third,
@@ -315,7 +315,7 @@ mod tests {
315315 assert_eq ! ( c. chord_type, ChordType :: SuspendedSecond ) ;
316316 }
317317
318- #[ rstest_parametrize (
318+ #[ rstest (
319319 chord,
320320 root,
321321 third,
@@ -347,7 +347,7 @@ mod tests {
347347 assert_eq ! ( c. chord_type, ChordType :: SuspendedFourth ) ;
348348 }
349349
350- #[ rstest_parametrize (
350+ #[ rstest (
351351 chord,
352352 root,
353353 third,
@@ -379,7 +379,7 @@ mod tests {
379379 assert_eq ! ( c. chord_type, ChordType :: Augmented ) ;
380380 }
381381
382- #[ rstest_parametrize (
382+ #[ rstest (
383383 chord,
384384 root,
385385 third,
@@ -411,7 +411,7 @@ mod tests {
411411 assert_eq ! ( c. chord_type, ChordType :: Diminished ) ;
412412 }
413413
414- #[ rstest_parametrize (
414+ #[ rstest (
415415 chord,
416416 root,
417417 third,
@@ -451,7 +451,7 @@ mod tests {
451451 assert_eq ! ( c. chord_type, ChordType :: DominantSeventh ) ;
452452 }
453453
454- #[ rstest_parametrize (
454+ #[ rstest (
455455 chord,
456456 root,
457457 third,
@@ -491,7 +491,7 @@ mod tests {
491491 assert_eq ! ( c. chord_type, ChordType :: MinorSeventh ) ;
492492 }
493493
494- #[ rstest_parametrize (
494+ #[ rstest (
495495 chord,
496496 root,
497497 third,
@@ -531,7 +531,7 @@ mod tests {
531531 assert_eq ! ( c. chord_type, ChordType :: MajorSeventh ) ;
532532 }
533533
534- #[ rstest_parametrize (
534+ #[ rstest (
535535 chord,
536536 root,
537537 third,
@@ -571,7 +571,7 @@ mod tests {
571571 assert_eq ! ( c. chord_type, ChordType :: MinorMajorSeventh ) ;
572572 }
573573
574- #[ rstest_parametrize (
574+ #[ rstest (
575575 chord,
576576 root,
577577 third,
@@ -611,7 +611,7 @@ mod tests {
611611 assert_eq ! ( c. chord_type, ChordType :: AugmentedSeventh ) ;
612612 }
613613
614- #[ rstest_parametrize (
614+ #[ rstest (
615615 chord,
616616 root,
617617 third,
@@ -651,7 +651,7 @@ mod tests {
651651 assert_eq ! ( c. chord_type, ChordType :: AugmentedMajorSeventh ) ;
652652 }
653653
654- #[ rstest_parametrize (
654+ #[ rstest (
655655 chord,
656656 root,
657657 third,
@@ -691,7 +691,7 @@ mod tests {
691691 assert_eq ! ( c. chord_type, ChordType :: DiminishedSeventh ) ;
692692 }
693693
694- #[ rstest_parametrize (
694+ #[ rstest (
695695 chord,
696696 root,
697697 third,
@@ -731,7 +731,7 @@ mod tests {
731731 assert_eq ! ( c. chord_type, ChordType :: HalfDiminishedSeventh ) ;
732732 }
733733
734- #[ rstest_parametrize (
734+ #[ rstest (
735735 chord,
736736 note,
737737 contains,
0 commit comments