fix(tracker): autofix malformed songs with useless params

This commit is contained in:
5684185+vsariola@users.noreply.github.com
2024-09-22 10:20:52 +03:00
parent 773655ef9c
commit 5c51932f60
3 changed files with 36 additions and 0 deletions

View File

@ -289,6 +289,9 @@ func FuzzModel(f *testing.F) {
if a.Name == "IDCollision" {
t.Errorf("Path: %s Model has ID collisions", totalPath)
}
if a.Name == "InvalidUnitParameters" {
t.Errorf("Path: %s Model units with invalid parameters", totalPath)
}
})
}
closeChan <- struct{}{}