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
fix: correct t.Assert call in Test_Model_Fields_Empty
Replace t.Assert(len(result) <= 1) with t.AssertLE(len(result), 1).
t.Assert requires two arguments (actual, expected) but was given a boolean expression.
0 commit comments