Commit 970a0488 authored by Tres Seaver's avatar Tres Seaver

Ugh, Py3k fix.

parent 6e976142
......@@ -1065,7 +1065,7 @@ class TransactionTests(unittest.TestCase):
txn.user = b'phreddy'
with self.assertRaises(ValueError):
txn.user = None # resets to empty text
self.assertEqual(txn.user, b'phreddy')
self.assertEqual(txn.user, u'phreddy')
def _test_user_non_text(self, user, path, expect, both=False):
txn = self._makeOne()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment