diff options
| author | Bert JW Regeer <bertjw@regeer.org> | 2014-04-16 11:41:01 -0600 |
|---|---|---|
| committer | Bert JW Regeer <bertjw@regeer.org> | 2014-04-16 11:41:01 -0600 |
| commit | aea5ac5c43e0823040af2e0339e2339e783ee2dd (patch) | |
| tree | b1f3694b59ffdd8ec60f78d60b73c5b0f2269390 /tests/test_util.py | |
| parent | d3d3566d60d742c02af1b2f09719afd135def27c (diff) | |
| download | webob-aea5ac5c43e0823040af2e0339e2339e783ee2dd.tar.gz | |
Remove __version__ entirely
Diffstat (limited to 'tests/test_util.py')
| -rw-r--r-- | tests/test_util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_util.py b/tests/test_util.py index 45f8bba..65cff49 100644 --- a/tests/test_util.py +++ b/tests/test_util.py @@ -39,7 +39,7 @@ class Test_warn_deprecation(unittest.TestCase): self.assertEqual(len(self.warnings), 0) def test_warn_deprecation(self): - from webob import __version__ as v + v = '1.3.0' from webob.util import warn_deprecation self.assertRaises(DeprecationWarning, warn_deprecation, 'foo', v[:3], 1) |
