Skip to content

Commit 7f29550

Browse files
author
Ilija Vukotic
committed
forgotten
1 parent 8787c85 commit 7f29550

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/servicex_did_finder_lib/test_servicex_did.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def test_put_file_add():
2222

2323
assert len(responses.calls) == 1
2424
submitted = json.loads(responses.calls[0].request.body)
25-
assert submitted['file_path'][0] == 'root://foo.bar.ROOT'
25+
assert submitted['paths'][0] == 'root://foo.bar.ROOT'
2626
assert submitted['adler32'] == '32'
2727
assert submitted['file_events'] == 3141
2828
assert submitted['file_size'] == 1024
@@ -41,7 +41,7 @@ def test_put_file_add_with_prefix():
4141

4242
assert len(responses.calls) == 1
4343
submitted = json.loads(responses.calls[0].request.body)
44-
assert submitted['file_path'][0] == 'xcache123:root://foo.bar.ROOT'
44+
assert submitted['paths'][0] == 'xcache123:root://foo.bar.ROOT'
4545
assert submitted['adler32'] == '32'
4646
assert submitted['file_events'] == 3141
4747
assert submitted['file_size'] == 1024

0 commit comments

Comments
 (0)