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
Date.parse("yesterday week").equals(Date.parse("next week")); //
[PASS]which is not good
The following should pass...
Date.parse("yesterday week").equals(Date.parse("next week").add(-1).day());
// currently fails
This is a bit of known issue when combining Relative dates ("tomorrow")
with date math ("+week"). One hand is not talking to the other.
A fix is planned and should be available in the next release (Beta 1) of
the Parser.
Original issue reported on code.google.com by geoff%co...@gtempaccount.com on 27 Nov 2007 at 10:36
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
geoff%co...@gtempaccount.com
on 27 Nov 2007 at 10:36The text was updated successfully, but these errors were encountered: