aboutsummaryrefslogtreecommitdiff
path: root/tests/unit
diff options
context:
space:
mode:
authorBonfaceKilz2021-06-07 19:44:00 +0300
committerzsloan2021-06-18 22:08:04 +0000
commitbb55cf948974d85fb31d2f424f7ee94f7ab5e3d6 (patch)
tree7e66ebe7ad446ff6e99bdcb4871ddf474fccf3a3 /tests/unit
parente67316601be4b43da6f60322fef1f4ce15ed5905 (diff)
downloadgenenetwork3-bb55cf948974d85fb31d2f424f7ee94f7ab5e3d6.tar.gz
Rename json_data column to json_diff_data
Diffstat (limited to 'tests/unit')
-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"}'))