diff --git a/examples/UprootRaw_Dict.py b/examples/UprootRaw_Dict.py index be79645b..bde62f37 100644 --- a/examples/UprootRaw_Dict.py +++ b/examples/UprootRaw_Dict.py @@ -24,4 +24,8 @@ ] } -print(f"Files: {deliver(spec)}") +files = deliver(spec) +if len(files["UprootRaw_Dict"]) != 3: + raise RuntimeError(f"Expect three files from server; got {files}") + +print(f"Files: {files}")