summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJoshua Ismael Haase Hernández <hahj87@gmail.com>2011-04-15 04:53:27 -0500
committerJoshua Ismael Haase Hernández <hahj87@gmail.com>2011-04-15 04:53:27 -0500
commitdeab65fad4ced009fb31f7033b1db8ef0af78aee (patch)
tree1c177c591d341b624ccfe15a40bfbc9f63697dc6 /test
parent062b7a2d9b0347e4e867e588826f052d26a3bb30 (diff)
Python parts ready for bash usage in python 2 and 3
Diffstat (limited to 'test')
-rw-r--r--test/test_filter.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/test_filter.py b/test/test_filter.py
index b6d5766..d8006f9 100644
--- a/test/test_filter.py
+++ b/test/test_filter.py
@@ -143,7 +143,8 @@ class generateRsyncBlacklist(unittest.TestCase):
def testExcludeFiles(self):
a=rsyncBlacklist_from_blacklist(self.example_package_list,
- listado("blacklist_sample"))
+ listado("blacklist_sample"),
+ False)
b=[self.example_package_list[0]["location"],self.example_package_list[2]["location"]]
self.assertEqual(a,b)