about summary refs log tree commit diff
path: root/test/helper.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-08-08 21:42:50 +0600
committerSergey M․ <dstftw@gmail.com>2015-08-08 21:42:50 +0600
commit8e2b1be12791b4e62c463562b570661e7b2c5852 (patch)
tree4d2c463bb954b3b8d07b90f083bbddbc535e8032 /test/helper.py
parentb61b7787cbef408154695bbb9f5c3d29a70fdd38 (diff)
downloadyoutube-dl-8e2b1be12791b4e62c463562b570661e7b2c5852.tar.gz
youtube-dl-8e2b1be12791b4e62c463562b570661e7b2c5852.tar.xz
youtube-dl-8e2b1be12791b4e62c463562b570661e7b2c5852.zip
[test/helper] Make age_limit checkable field
Diffstat (limited to 'test/helper.py')
-rw-r--r--test/helper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/helper.py b/test/helper.py
index c8b34654d..cb6eec8d9 100644
--- a/test/helper.py
+++ b/test/helper.py
@@ -160,7 +160,7 @@ def expect_info_dict(self, got_dict, expected_dict):
     # Are checkable fields missing from the test case definition?
     test_info_dict = dict((key, value if not isinstance(value, compat_str) or len(value) < 250 else 'md5:' + md5(value))
                           for key, value in got_dict.items()
-                          if value and key in ('id', 'title', 'description', 'uploader', 'upload_date', 'timestamp', 'uploader_id', 'location'))
+                          if value and key in ('id', 'title', 'description', 'uploader', 'upload_date', 'timestamp', 'uploader_id', 'location', 'age_limit'))
     missing_keys = set(test_info_dict.keys()) - set(expected_dict.keys())
     if missing_keys:
         def _repr(v):