Commit 4d09ed30 authored by Jim Fulton's avatar Jim Fulton

Fixed a spurious test failure due to an change in an exception's

string representation.
parent e7e22d37
......@@ -182,15 +182,15 @@ However, using a savepoint invalidates any savepoints that come after it:
>>> root['bob-balance']
100.0
>>> savepoint2.rollback()
>>> savepoint2.rollback() # doctest: +ELLIPSIS
Traceback (most recent call last):
...
InvalidSavepointRollbackError
InvalidSavepointRollbackError...
>>> savepoint1.rollback()
>>> savepoint1.rollback() # doctest: +ELLIPSIS
Traceback (most recent call last):
...
InvalidSavepointRollbackError
InvalidSavepointRollbackError...
>>> transaction.abort()
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