diff options
author | tux <tux@linux-hmt5.(none)> | 2012-02-24 17:11:33 +0100 |
---|---|---|
committer | tux <tux@linux-hmt5.(none)> | 2012-02-24 17:11:33 +0100 |
commit | 0ee70ae8a779bf841ab5203d307f2628f681c8f1 (patch) | |
tree | b7a512daf7d8456ecbb64ffb5835676d6d15b05c | |
parent | 365ce9dcf2f4fe801c247fe07b06f504e2f26dca (diff) | |
download | libzypp-bindings-0ee70ae8a779bf841ab5203d307f2628f681c8f1.tar.gz libzypp-bindings-0ee70ae8a779bf841ab5203d307f2628f681c8f1.tar.bz2 libzypp-bindings-0ee70ae8a779bf841ab5203d307f2628f681c8f1.zip |
have more relaxed rules in test of dump functionality
-rw-r--r-- | swig/python/tests/repoinfo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/swig/python/tests/repoinfo.py b/swig/python/tests/repoinfo.py index 9934f09..8fdc3b0 100644 --- a/swig/python/tests/repoinfo.py +++ b/swig/python/tests/repoinfo.py @@ -56,7 +56,7 @@ class RepoInfoTestCase(unittest.TestCase): def testDump(self): out = self.info.dump() - assert len(out) == 396, 'Invalid output length %d' % len(out) + assert len(out) > 300, 'Invalid output length %d' % len(out) def testDumpIni(self): out = self.info.dumpAsIni() |