This is an automated email from the ASF dual-hosted git repository.
kaxilnaik pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/master by this push:
new ea939ec JSON escape text in test_list_dagrun_includes_conf (#9264)
ea939ec is described below
commit ea939ec9a7c3cdd2dc1bea484c4a0def9a48ace1
Author: Kaxil Naik <[email protected]>
AuthorDate: Fri Jun 12 23:39:33 2020 +0100
JSON escape text in test_list_dagrun_includes_conf (#9264)
Needed because of the change in https://github.com/apache/airflow/pull/9180
---
tests/www/test_views.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/www/test_views.py b/tests/www/test_views.py
index 3f020ea..6822465 100644
--- a/tests/www/test_views.py
+++ b/tests/www/test_views.py
@@ -2719,7 +2719,7 @@ class TestDagRunModelView(TestBase):
self.assertEqual(dr.conf, {"include": "me"})
resp = self.client.get('/dagrun/list', follow_redirects=True)
- self.check_content_in_response("{'include': 'me'}", resp)
+ self.check_content_in_response("{'include': 'me'}",
resp)
class TestDecorators(TestBase):