Changeset - 8004bb53154a
[Not reviewed]
0 1 0
Lance Edgar (lance) - 11 years ago 2014-01-26 16:51:55
lance@edbob.org
Fix ignoring of SQLAlchemy warning for tests.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
tests/db/__init__.py
Show inline comments
 
@@ -18,7 +18,7 @@ warnings.filterwarnings(
 
    "and SQLAlchemy must convert from floating point - rounding errors and other "
 
    "issues may occur\. Please consider storing Decimal numbers as strings or "
 
    "integers on this platform for lossless storage\.$",
 
    SAWarning, r'^sqlalchemy\.sql\.type_api$')
 
    SAWarning, r'^sqlalchemy\..*$')
 

	
 

	
 
class DataTestCase(unittest.TestCase):
0 comments (0 inline, 0 general)