Skip to content

Commit b016910

Browse files
committed
BUG: Fix test_load_json_dataset_da
use DICOM DA format (YYYYMMDD) instead of ISO format (YYYY-MM-DD)
1 parent 5f95b3a commit b016910

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_web.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1537,7 +1537,7 @@ def test_delete_instance_error_with_additional_params(
15371537

15381538

15391539
def test_load_json_dataset_da(httpserver, client, cache_dir):
1540-
value = ['2018-11-21']
1540+
value = ['20181121'] # DA format must be YYYYMMDD
15411541
dicom_json = {
15421542
'00080020': {
15431543
'vr': 'DA',

0 commit comments

Comments
 (0)