This is an automated email from the ASF dual-hosted git repository.
kaxilnaik pushed a commit to branch v1-10-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v1-10-test by this push:
new c232972 fixup! fixup! [AIRFLOW-8902] Fix Dag Run UI execution date
with timezone cannot be saved issue (#8902)
c232972 is described below
commit c2329721385b15984ab5acddad92767348c763e0
Author: Kaxil Naik <[email protected]>
AuthorDate: Tue Jun 23 00:22:26 2020 +0100
fixup! fixup! [AIRFLOW-8902] Fix Dag Run UI execution date with timezone
cannot be saved issue (#8902)
---
tests/www_rbac/test_views.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/www_rbac/test_views.py b/tests/www_rbac/test_views.py
index d5eb040..2824184 100644
--- a/tests/www_rbac/test_views.py
+++ b/tests/www_rbac/test_views.py
@@ -2552,7 +2552,7 @@ class TestDagRunModelView(TestBase):
dr = self.session.query(models.DagRun).one()
- self.assertEqual(dr.execution_date, timezone.datetime(2018, 7, 6, 5,
4, 3))
+ self.assertEqual(dr.execution_date, timezone.datetime(2018, 7, 6, 9,
4, 3))
def test_create_dagrun_execution_date_without_timezone_default_utc(self):
data = {