summaryrefslogtreecommitdiffstats
path: root/util/cmake/tests/test_operations.py
diff options
context:
space:
mode:
Diffstat (limited to 'util/cmake/tests/test_operations.py')
-rwxr-xr-xutil/cmake/tests/test_operations.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/util/cmake/tests/test_operations.py b/util/cmake/tests/test_operations.py
index 3ea2f76a43..c1e5f1b250 100755
--- a/util/cmake/tests/test_operations.py
+++ b/util/cmake/tests/test_operations.py
@@ -32,26 +32,26 @@ from pro2cmake import AddOperation, SetOperation, UniqueAddOperation, RemoveOper
def test_add_operation():
op = AddOperation(['bar', 'buz'])
- result = op.process(['foo', 'bar'])
+ result = op.process(['foo', 'bar'], ['foo', 'bar'], lambda x: x)
assert ['foo', 'bar', 'bar', 'buz'] == result
def test_uniqueadd_operation():
op = UniqueAddOperation(['bar', 'buz'])
- result = op.process(['foo', 'bar'])
+ result = op.process(['foo', 'bar'], ['foo', 'bar'], lambda x: x)
assert ['foo', 'bar', 'buz'] == result
def test_set_operation():
op = SetOperation(['bar', 'buz'])
- result = op.process(['foo', 'bar'])
+ result = op.process(['foo', 'bar'], ['foo', 'bar'], lambda x: x)
assert ['bar', 'buz'] == result
def test_remove_operation():
op = RemoveOperation(['bar', 'buz'])
- result = op.process(['foo', 'bar'])
+ result = op.process(['foo', 'bar'], ['foo', 'bar'], lambda x: x)
assert ['foo', '-buz'] == result