From 8f199e29421d5d76b707fef6663058bb680862cb Mon Sep 17 00:00:00 2001 From: mike cullerton Date: Mon, 18 Apr 2022 16:41:03 -0400 Subject: [PATCH] file_id => document_id --- tests/test_datastore_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_datastore_api.py b/tests/test_datastore_api.py index a72c51d6..30a851f1 100644 --- a/tests/test_datastore_api.py +++ b/tests/test_datastore_api.py @@ -47,7 +47,7 @@ class DataStoreTest(BaseTest): def add_test_file_data(self, file_id, value): file_data = DataStoreSchema().dump(self.TEST_FILE_ITEM) - file_data['file_id'] = file_id + file_data['document_id'] = file_id file_data['value'] = value rv = self.app.post('/v1.0/datastore', content_type="application/json",