We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
assert_that([("a",)]).contains_only("a")
AssertionError: Expected <[('a',)]> to contain only <a>, but did contain <a>.
Should be
AssertionError: Expected <[('a',)]> to contain only <a>, but did contain <('a',)>.