Skip to content

Commit 8ab57b4

Browse files
Remove unnecessary print and update changelog.
1 parent 2413f54 commit 8ab57b4

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
44

55
## [Unreleased]
66

7+
## Security
8+
- Documentation with detail regarding warning on bearer token. (#83) PR #88
9+
710
## Fixed
811
- Incorrect virtual module reference of `schema_virtual_module` in table metadata. (#85) PR #88
912

@@ -12,7 +15,6 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
1215
- Documentation on setting up environments within `docker-compose` header. PR #79
1316
- `cascade` option for `/delete_tuple` route. (#86) PR #88
1417
- When delete with `cascade=False` fails due to foreign key relations, returns a HTTP error code of `409 Conflict` with a JSON body containing specifics of 1st child. (#86) PR #88
15-
- Documentation with detail regarding warning on bearer token. (#83) PR #88
1618

1719
### Changed
1820
- Replaced `DJConnector.snake_to_camel_case` usage with `datajoint.utils.to_camel_case`. PR #88

tests/test_delete.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ def test_delete_dependent_with_cascade(token, client, connection, schemas_simple
77
table_name = 'TableB'
88
restriction = dict(a_id=0, b_id=11)
99
vm = dj.VirtualModule('group1_simple', schema_name)
10-
print(getattr(vm, table_name) & restriction)
1110
REST_response = client.post(
1211
'/delete_tuple?cascade=tRuE',
1312
headers=dict(Authorization=f'Bearer {token}'),

0 commit comments

Comments
 (0)