diff options
| author | Robert Collins <robertc@robertcollins.net> | 2021-07-29 10:44:48 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-29 10:44:48 +0200 |
| commit | c87ffbd904627d777aa1430963dced92a36aa033 (patch) | |
| tree | c7abf479a50a137f715e591e20805e3947a7f4e9 /python/subunit/__init__.py | |
| parent | 59fbca9f6c5b4095622460d7237c13998d848d97 (diff) | |
| parent | faaca9b50f59d63a21663a1dc8ed21f22ffb6223 (diff) | |
| download | subunit-git-c87ffbd904627d777aa1430963dced92a36aa033.tar.gz | |
Merge pull request #51 from cjwatson/testtools-2.5.0
Fix tests with testtools 2.5.0
Diffstat (limited to 'python/subunit/__init__.py')
| -rw-r--r-- | python/subunit/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/subunit/__init__.py b/python/subunit/__init__.py index cf4692a..6917f42 100644 --- a/python/subunit/__init__.py +++ b/python/subunit/__init__.py @@ -821,7 +821,7 @@ class TestProtocolClient(testresult.TestResult): if parameters: self._stream.write(_b(";")) param_strs = [] - for param, value in parameters.items(): + for param, value in sorted(parameters.items()): param_strs.append("%s=%s" % (param, value)) self._stream.write(_b(",".join(param_strs))) self._stream.write(_b("\n%s\n" % name)) |
