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 all data in error messages in enclosed in brackets. Strings should use quotes. Numbers should use nothing.
// Throws AssertError@source\BDD.d(1120): <zzz> is not in <[aaa, bbb, ccc]>."zzz".shouldBeIn(["aaa", "bbb", "ccc"]);
// Should Be formatted like these// "zzz" is not in ["aaa", "bbb", "ccc"]// 123 is not in [444, 555, 666]
The text was updated successfully, but these errors were encountered:
Right now all data in error messages in enclosed in brackets. Strings should use quotes. Numbers should use nothing.
The text was updated successfully, but these errors were encountered: