Skip to content
Snippets Groups Projects
Commit c0d1f37b authored by Erik Johnston's avatar Erik Johnston
Browse files

Don't require pdus in check_auth script

parent d23bc77e
No related branches found
No related tags found
No related merge requests found
...@@ -56,10 +56,9 @@ if __name__ == '__main__': ...@@ -56,10 +56,9 @@ if __name__ == '__main__':
js = json.load(args.json) js = json.load(args.json)
auth = Auth(Mock()) auth = Auth(Mock())
check_auth( check_auth(
auth, auth,
[FrozenEvent(d) for d in js["auth_chain"]], [FrozenEvent(d) for d in js["auth_chain"]],
[FrozenEvent(d) for d in js["pdus"]], [FrozenEvent(d) for d in js.get("pdus", [])],
) )
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment