diff options
author | BonfaceKilz | 2021-06-07 19:44:00 +0300 |
---|---|---|
committer | zsloan | 2021-06-18 22:08:04 +0000 |
commit | bb55cf948974d85fb31d2f424f7ee94f7ab5e3d6 (patch) | |
tree | 7e66ebe7ad446ff6e99bdcb4871ddf474fccf3a3 /tests | |
parent | e67316601be4b43da6f60322fef1f4ce15ed5905 (diff) | |
download | genenetwork3-bb55cf948974d85fb31d2f424f7ee94f7ab5e3d6.tar.gz |
Rename json_data column to json_diff_data
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/db/test_audit.py | 2 |
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"}')) |