From 1bbab9aa005f527c80ac793ae7639aed6e13672e Mon Sep 17 00:00:00 2001 From: protolambda Date: Thu, 23 May 2019 22:28:11 +0200 Subject: [PATCH] more direct in what is happening in test utils --- test_libs/pyspec/eth2spec/test/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_libs/pyspec/eth2spec/test/utils.py b/test_libs/pyspec/eth2spec/test/utils.py index 02bc9a1e6..b61801c3d 100644 --- a/test_libs/pyspec/eth2spec/test/utils.py +++ b/test_libs/pyspec/eth2spec/test/utils.py @@ -60,7 +60,7 @@ def with_tags(tags: Dict[str, Any]): fn_out = fn(*args, **kw) # do not add tags if the function is not returning a dict at all (i.e. not in generator mode) if fn_out is None: - return fn_out + return None return {**tags, **fn_out} return entry return runner