summaryrefslogtreecommitdiffstats
path: root/util/cmake/tests/test_scope_handling.py
diff options
context:
space:
mode:
authorFrederik Gladhorn <frederik.gladhorn@qt.io>2019-10-10 10:02:22 +0200
committerFrederik Gladhorn <frederik.gladhorn@qt.io>2019-10-10 13:12:38 +0000
commit2659d31d936bac6383e3e87fecd5179d2b4bc9ad (patch)
tree946d7996d9d59217a1ad9cff07a2771a55ec0936 /util/cmake/tests/test_scope_handling.py
parentb42feb02ceebfcf86caf8c8aa8be3e84b8e431ca (diff)
cmake scripts: fix test_scope_handling
The file parameter for a new Scope got renamed to qmake_file. Change-Id: I6cb9d010892f3e3132fac09eead1dbf45d6ba86d Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'util/cmake/tests/test_scope_handling.py')
-rwxr-xr-xutil/cmake/tests/test_scope_handling.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/cmake/tests/test_scope_handling.py b/util/cmake/tests/test_scope_handling.py
index 14fd266c9c3..1db8b2a079d 100755
--- a/util/cmake/tests/test_scope_handling.py
+++ b/util/cmake/tests/test_scope_handling.py
@@ -43,7 +43,7 @@ def _map_to_operation(**kwargs):
def _new_scope(*, parent_scope=None, condition='', **kwargs) -> Scope:
return Scope(parent_scope=parent_scope,
- file='file1', condition=condition, operations=_map_to_operation(**kwargs))
+ qmake_file='file1', condition=condition, operations=_map_to_operation(**kwargs))
def _evaluate_scopes(scopes: ScopeList) -> ScopeList: