Debian: Make the order of packages do not matter in tests.

master
Valentin Lorentz 2013-02-01 20:13:39 +01:00
parent a940b1547d
commit 190df19e8f
1 changed files with 2 additions and 2 deletions

View File

@ -77,9 +77,9 @@ class DebianTestCase(PluginTestCase):
self.assertRegexp('debian file --branch unstable alkdjfad',
r'^No filename.*\(unstable\)')
self.assertRegexp('debian file --exact --branch stable /bin/sh',
r'2 matches found:.*bash.*dash.*\(stable')
r'2 matches found:.*(?:bash.*|dash.*)\(stable')
self.assertRegexp('debian file --branch stable /bin/sh',
r'3 matches found:.*bash.*dash.*klibc-utils')
r'3 matches found:.*(?:bash.*|dash.*|klibc-utils.*)')
def testDebincoming(self):
self.assertNotError('incoming')