diff options
Diffstat (limited to 'community/crystal/fix-std-http-cookie-exp.patch')
-rw-r--r-- | community/crystal/fix-std-http-cookie-exp.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/community/crystal/fix-std-http-cookie-exp.patch b/community/crystal/fix-std-http-cookie-exp.patch new file mode 100644 index 0000000000..b25da46010 --- /dev/null +++ b/community/crystal/fix-std-http-cookie-exp.patch @@ -0,0 +1,11 @@ +--- a/spec/std/http/cookie_spec.cr 2019-12-18 15:49:14.000000000 +0100 ++++ b/spec/std/http/cookie_spec.cr 2020-02-18 12:07:51.036417255 +0100 +@@ -218,7 +218,7 @@ + parse_set_cookie("bla=1; max-age=1").expired?.should eq false + end + +- it "not expired" do ++ pending "not expired" do + parse_set_cookie("bla=1; expires=Thu, 01 Jan 2020 00:00:00 -0000").expired?.should eq false + end + |