109
110 if alice.Code != 3 {
111▶ t.Errorf("Alice Code = %d, want 3", alice.Code)
112 }
113 if bob.Code != 4 {
· · ·
114▶ t.Errorf("Bob Code = %d, want 4", bob.Code)
115 }
116}
· · ·
136 }
137 if sum < 99.99 || sum > 100.01 {
138▶ t.Errorf("OwnsPercent sum = %f, want ~100", sum)
139 }
140}
· · ·
171 }
172 if sentinel.Code == 0 {
173▶ t.Errorf("sentinel Code = 0, want surviving baseline lines")
174 }
175 if sentinel.OwnsPercent < 50 {
· · ·
176▶ t.Errorf("sentinel OwnsPercent = %f, want > 50 (only 1 line added in window)", sentinel.OwnsPercent)
177 }
178}
+ 22 more matches in this file