From 2659d31d936bac6383e3e87fecd5179d2b4bc9ad Mon Sep 17 00:00:00 2001 From: Frederik Gladhorn Date: Thu, 10 Oct 2019 10:02:22 +0200 Subject: [PATCH] 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 --- util/cmake/tests/test_scope_handling.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: