diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-01-20 04:27:36 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-01-21 13:27:44 +0530 |
commit | 6970b6005e9c07c427d368bbe3f71f85878f325e (patch) | |
tree | 3c5090cb5729f896b28c0537bf94b6686a31ce38 /test/helper.py | |
parent | fc5fa964c7ca1ee548ee3b8f1e559aac24d3d45f (diff) | |
download | hypervideo-pre-6970b6005e9c07c427d368bbe3f71f85878f325e.tar.lz hypervideo-pre-6970b6005e9c07c427d368bbe3f71f85878f325e.tar.xz hypervideo-pre-6970b6005e9c07c427d368bbe3f71f85878f325e.zip |
[cleanup] Minor fixes
Closes #2334
Diffstat (limited to 'test/helper.py')
-rw-r--r-- | test/helper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/helper.py b/test/helper.py index c9293f81a..ce751462e 100644 --- a/test/helper.py +++ b/test/helper.py @@ -235,7 +235,7 @@ def sanitize_got_info_dict(got_dict): } # display_id may be generated from id - if test_info_dict.get('display_id') == test_info_dict['id']: + if test_info_dict.get('display_id') == test_info_dict.get('id'): test_info_dict.pop('display_id') return test_info_dict |