From 014f33655c3c180d5fa406d4e858f937c0c43fa9 Mon Sep 17 00:00:00 2001 From: Martyn Ranyard Date: Mon, 22 May 2017 19:00:06 +0100 Subject: [PATCH] Allows for testing binary modules (#24857) --- hacking/test-module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hacking/test-module b/hacking/test-module index 3ef8bd65df4..b8ae7871631 100755 --- a/hacking/test-module +++ b/hacking/test-module @@ -248,7 +248,7 @@ def main(): argspath = None if module_style not in ('new', 'ansiballz'): - if module_style == 'non_native_want_json': + if module_style in ('non_native_want_json', 'binary'): argspath = write_argsfile(options.module_args, json=True) elif module_style == 'old': argspath = write_argsfile(options.module_args, json=False)