diff options
| author | Julian Andres Klode <jak@debian.org> | 2009-04-14 00:47:23 +0200 |
|---|---|---|
| committer | Julian Andres Klode <jak@debian.org> | 2009-04-14 00:47:23 +0200 |
| commit | 8413810c46f802490280b0be1beebaaadf1aa9f2 (patch) | |
| tree | 96a6438fbd87d65b42f5754598c82a584ebf2145 /tests | |
| parent | daaa814658b6d2b8e3e2437fcc625096c46395dd (diff) | |
| download | python-apt-8413810c46f802490280b0be1beebaaadf1aa9f2.tar.gz | |
* Remove any trailing whitespace
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/getcache_mem_corruption.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/getcache_mem_corruption.py b/tests/getcache_mem_corruption.py index 42e9af00..c3f6eff3 100644 --- a/tests/getcache_mem_corruption.py +++ b/tests/getcache_mem_corruption.py @@ -6,16 +6,16 @@ import re import unittest class TestGetCache(unittest.TestCase): - + def setUp(self): apt_pkg.InitConfig() apt_pkg.InitSystem() - + def testWrongInvocation(self): # wrongly invoke GetCache() rather than GetDepCache() apt_cache = apt_pkg.GetCache() self.assertRaises(ValueError, apt_pkg.GetCache, apt_cache) - + def testProperInvocation(self): apt_cache = apt_pkg.GetCache(apt.progress.OpTextProgress()) apt_depcache = apt_pkg.GetDepCache(apt_cache) |
