summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorjvoisin2011-10-01 18:56:36 +0200
committerjvoisin2011-10-01 18:56:36 +0200
commit33e441ce348e728f218c74cf527f0cd3e949ab73 (patch)
tree6f52a1aa8c35dd46f79b71711ec982ef3f45d964 /test
parent2a42a242e322fa1b8ec686f26a445a426b468d06 (diff)
Precision
Diffstat (limited to 'test')
-rw-r--r--test/test.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/test.py b/test/test.py
index 9b99ecc..d219d2f 100644
--- a/test/test.py
+++ b/test/test.py
@@ -13,10 +13,11 @@ import unittest
13 13
14VERBOSITY = 3 14VERBOSITY = 3
15 15
16clean = glob.glob('clean*') 16clean = glob.glob('clean.*')
17clean.sort() 17clean.sort()
18dirty = glob.glob('dirty*') 18dirty = glob.glob('dirty.*')
19dirty.sort() 19dirty.sort()
20
20FILE_LIST = zip(clean, dirty) 21FILE_LIST = zip(clean, dirty)
21 22
22try: 23try: