@@ -563,7 +563,7 @@ func Test_Analyze(t *testing.T) {
563563 result := Analyze (cfg , stats , stats )
564564 assert .Empty (t , result .Diff )
565565 assert .True (t , result .Pass ())
566- assert .Equal (t , 0.0 , result .DiffPercentage )
566+ assert .Equal (t , 0.0 , result .DiffPercentage ) //nolint:testifylint //relax
567567 })
568568
569569 t .Run ("diff below threshold" , func (t * testing.T ) {
@@ -579,7 +579,7 @@ func Test_Analyze(t *testing.T) {
579579 assert .NotEmpty (t , result .Diff )
580580 assert .False (t , result .Pass ())
581581 assert .False (t , result .MeetsDiffThreshold ())
582- assert .Equal (t , 70.0 , result .DiffPercentage )
582+ assert .Equal (t , 70.0 , result .DiffPercentage ) //nolint:testifylint //relax
583583 })
584584
585585 t .Run ("diff above threshold" , func (t * testing.T ) {
@@ -595,7 +595,7 @@ func Test_Analyze(t *testing.T) {
595595 assert .NotEmpty (t , result .Diff )
596596 assert .True (t , result .Pass ())
597597 assert .True (t , result .MeetsDiffThreshold ())
598- assert .Equal (t , 70.0 , result .DiffPercentage )
598+ assert .Equal (t , 70.0 , result .DiffPercentage ) //nolint:testifylint //relax
599599 })
600600
601601 t .Run ("diff above threshold (small diff)" , func (t * testing.T ) {
@@ -610,7 +610,7 @@ func Test_Analyze(t *testing.T) {
610610 result := Analyze (cfg , stats , base )
611611 assert .True (t , result .Pass ())
612612 assert .True (t , result .MeetsDiffThreshold ())
613- assert .Equal (t , 0.01 , result .DiffPercentage )
613+ assert .Equal (t , 0.01 , result .DiffPercentage ) //nolint:testifylint //relax
614614 })
615615}
616616
0 commit comments