Skip to content
Snippets Groups Projects
Commit 51a7e0c3 authored by Herwin van Welbergen's avatar Herwin van Welbergen
Browse files

made python 2.6 compliant

parent 4c02060a
No related branches found
No related tags found
No related merge requests found
...@@ -30,8 +30,8 @@ class IUCategoryMatcher(BaseMatcher): ...@@ -30,8 +30,8 @@ class IUCategoryMatcher(BaseMatcher):
class ComponentNotifierTest(unittest.TestCase): class ComponentNotifierTest(unittest.TestCase):
RECV_CAT = {"testrec1", "testrc2"} RECV_CAT = set(["testrec1", "testrc2"])
SEND_CAT = {"testsnd1", "testsnd2", "testsnd3"} SEND_CAT = set(["testsnd1", "testsnd2", "testsnd3"])
def setUp(self): def setUp(self):
self.mockOutBuffer = mock() self.mockOutBuffer = mock()
self.mockInBuffer = mock() self.mockInBuffer = mock()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment