aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBonfaceKilz2021-06-07 19:44:00 +0300
committerBonfaceKilz2021-06-07 19:58:44 +0300
commita364496e9884e46080844bd3eddb2b52d6ed9164 (patch)
treeacc173670ff8547281395aa829634b00569da497 /tests
parent284e7aba7860783cec271471fd2c6f0078805965 (diff)
downloadgenenetwork3-a364496e9884e46080844bd3eddb2b52d6ed9164.tar.gz
Rename json_data column to json_diff_data
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/db/test_audit.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/db/test_audit.py b/tests/unit/db/test_audit.py
index 1449281..7480169 100644
--- a/tests/unit/db/test_audit.py
+++ b/tests/unit/db/test_audit.py
@@ -24,5 +24,5 @@ class TestMetadatAudit(TestCase):
json_data=json.dumps({"a": "b"}))), 1)
cursor.execute.assert_called_once_with(
"INSERT INTO metadata_audit (dataset_id, "
- "editor, json_data) VALUES (%s, %s, %s)",
+ "editor, json_diff_data) VALUES (%s, %s, %s)",
(35, 'Bonface', '{"a": "b"}'))