diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-11-14 10:05:35 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-11-14 10:05:35 -0500 |
commit | c2f80902e35e5e4f638d66d1a1996e1ba6dca642 (patch) | |
tree | b458b8343d6f1b36115ec623a46a3d9808aaeb54 /tests | |
parent | 052e4fef260c88597eadda9eeb5536ac7ad62846 (diff) | |
download | python-coveragepy-git-c2f80902e35e5e4f638d66d1a1996e1ba6dca642.tar.gz |
Make the try_execfile output something that can be usefully diffed.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/try_execfile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/try_execfile.py b/tests/try_execfile.py index 1035dff9..314ffae0 100644 --- a/tests/try_execfile.py +++ b/tests/try_execfile.py @@ -68,4 +68,4 @@ globals_to_check = { 'path': cleaned_sys_path, } -print(json.dumps(globals_to_check)) +print(json.dumps(globals_to_check, indent=4, sort_keys=True)) |