You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now we have if (_methods.Length > 1) as the first line of defense for overloading problems. The reason for this are about 30 failing tests if this condition is removed.
Looks like this is an easy fix to these tests, but using proper types in the code. e.g.
clr.setPreload(0) should be changed to clr.setPreload(False)
Right now we have
if (_methods.Length > 1)
as the first line of defense for overloading problems. The reason for this are about 30 failing tests if this condition is removed.Looks like this is an easy fix to these tests, but using proper types in the code. e.g.
clr.setPreload(0)
should be changed toclr.setPreload(False)
full list here:
The text was updated successfully, but these errors were encountered: