diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2015-02-18 00:38:42 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2015-02-18 00:38:42 +0100 |
commit | f21e915fb9ad53a62df65e5c75c984243aaf0aea (patch) | |
tree | 6b661e7915cdb361cb23ff9d00a51cadb0d251a0 /test | |
parent | 6f53c63df66d95ea684f84ef2f7f0e697acc1d20 (diff) |
[test/helper] Render info_dict with a final comma
Diffstat (limited to 'test')
-rw-r--r-- | test/helper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/helper.py b/test/helper.py index fef2db284..570c91440 100644 --- a/test/helper.py +++ b/test/helper.py @@ -170,7 +170,7 @@ def expect_info_dict(self, got_dict, expected_dict): ' %s: %s,\n' % (_repr(k), _repr(test_info_dict[k])) for k in missing_keys) write_string( - '\n\'info_dict\': {\n' + info_dict_str + '}\n', out=sys.stderr) + '\n\'info_dict\': {\n' + info_dict_str + '},\n', out=sys.stderr) self.assertFalse( missing_keys, 'Missing keys in test definition: %s' % ( |