summaryrefslogtreecommitdiff
path: root/test/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test.py')
-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: