Skip to content
This repository has been archived by the owner on Dec 18, 2019. It is now read-only.

Commit

Permalink
Small fix in dict_differ for nicer diff.
Browse files Browse the repository at this point in the history
  • Loading branch information
Szymon Guz committed Mar 25, 2013
1 parent 0a0417d commit 017c076
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/dict_differ.py
Expand Up @@ -52,7 +52,7 @@ def _generate_diff(self):
diff[k] = ('KEY NOT FOUND IN SECOND DICT', self.first[k])
elif self.first[k] != self.second[k]:
diff[k] = {"DIFFERENT VALUES":
{'FIRST DICT': self.first[k],
{'FIRST DICT ': self.first[k],
'SECOND DICT': self.second[k]}
}

Expand Down

0 comments on commit 017c076

Please sign in to comment.