diff options
author | Wojtek Kosior <koszko@koszko.org> | 2022-02-09 17:09:13 +0100 |
---|---|---|
committer | Wojtek Kosior <koszko@koszko.org> | 2022-02-09 18:00:16 +0100 |
commit | 1c65dd5ca24052ccf9a92939eecd0966c9635c50 (patch) | |
tree | 7575157ccd729b4ad79f6c04501023ccb0532a63 /test/unit/test_item_preview.py | |
parent | 830d22d8931a4e5f0606d401f24d7cd937f8697e (diff) | |
download | browser-extension-1c65dd5ca24052ccf9a92939eecd0966c9635c50.tar.gz browser-extension-1c65dd5ca24052ccf9a92939eecd0966c9635c50.zip |
adapt to changes in file path format
From now on we assume Hydrilla serves file contents at 'file/sha256/<hash>' instead of 'file/sha256-<hash>'.
With this commit we also stop using the "hash_key" property internally.
Diffstat (limited to 'test/unit/test_item_preview.py')
-rw-r--r-- | test/unit/test_item_preview.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/test_item_preview.py b/test/unit/test_item_preview.py index 8b2b161..8787d5d 100644 --- a/test/unit/test_item_preview.py +++ b/test/unit/test_item_preview.py @@ -160,7 +160,7 @@ def test_file_preview_link(driver, execute_in_page): # Cause the "link" to `bye.js` to be invalid. sample_resource = make_sample_resource() - sample_resource['scripts'][1]['hash_key'] = 'dummy nonexistent key' + sample_resource['scripts'][1]['sha256'] = 'dummy nonexistent hash' execute_in_page( ''' |