Skip to content

Commit

Permalink
use ordereddict for predictable output
Browse files Browse the repository at this point in the history
  • Loading branch information
Cadair committed May 30, 2018
1 parent 0a202af commit de07382
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/towncrier/test/test_write.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ class WritingTests(TestCase):
def test_append_at_top(self):

fragments = OrderedDict([
("", {
("", OrderedDict({
("142", "misc", 0): u"",
("1", "misc", 0): u"",
("4", "feature", 0): u"Stuff!",
("4", "feature", 1): u"Second Stuff!",
("2", "feature", 0): u"Foo added.",
("72", "feature", 0): u"Foo added.",
}),
})),
("Names", {}),
("Web", {
("3", "bugfix", 0): u"Web fixed.",
Expand Down

0 comments on commit de07382

Please sign in to comment.