summaryrefslogtreecommitdiff
path: root/test/unit/utils.py
diff options
context:
space:
mode:
authorWojtek Kosior <koszko@koszko.org>2022-02-15 13:18:59 +0100
committerWojtek Kosior <koszko@koszko.org>2022-02-15 13:18:59 +0100
commit92fc67cfa135526cef75311c3ee1a14e248c3060 (patch)
tree139aa953f29df525433001cd3b5487cb8df8f91a /test/unit/utils.py
parentcf838016b70bc55d8fb19a10b4deb580289e3769 (diff)
downloadbrowser-extension-92fc67cfa135526cef75311c3ee1a14e248c3060.tar.gz
browser-extension-92fc67cfa135526cef75311c3ee1a14e248c3060.zip
change store names and data keys to singular
Diffstat (limited to 'test/unit/utils.py')
-rw-r--r--test/unit/utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/utils.py b/test/unit/utils.py
index 04a4d97..6ff04ed 100644
--- a/test/unit/utils.py
+++ b/test/unit/utils.py
@@ -149,8 +149,8 @@ def make_complete_sample_data():
be used to populate IndexedDB.
"""
return {
- 'resources': sample_data_dict([make_sample_resource()]),
- 'mappings': sample_data_dict([make_sample_mapping()]),
+ 'resource': sample_data_dict([make_sample_resource()]),
+ 'mapping': sample_data_dict([make_sample_mapping()]),
'file': {
'sha256': sample_files_by_sha256
}