From 29a5b990fd91bdf2b9d1c2d0323634e1d33a49ec Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 19 Dec 2016 13:31:03 -0500 Subject: [PATCH] day_first in tests --- test_maya.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_maya.py b/test_maya.py index 31deaaa..036c408 100644 --- a/test_maya.py +++ b/test_maya.py @@ -86,7 +86,7 @@ def test_format(): d = maya.parse('01/05/2016') assert format(d) == '2016-01-05 00:00:00+00:00' - d = maya.parse('01/05/2016', dayfirst=True) + d = maya.parse('01/05/2016', day_first=True) assert format(d) == '2016-05-01 00:00:00+00:00' # rand_day = maya.when('2011-02-07', timezone='US/Eastern')