This commit is contained in:
Bel LaPointe
2023-10-24 06:00:12 -06:00
parent cafb40514c
commit ed75a59ca0
2 changed files with 19 additions and 1 deletions

View File

@@ -60,6 +60,9 @@ func TestFileDeltas(t *testing.T) {
t.Error(len(deltas))
}
for i := range want {
if i >= len(deltas) {
break
}
if want[i] != deltas[i] {
t.Errorf("[%d] \n\twant=%+v, \n\t got=%+v", i, want[i], deltas[i])
}