summaryrefslogtreecommitdiff
path: root/testsuite.py
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2017-10-30 02:11:38 +0100
committerUlf Magnusson <ulfalizer@gmail.com>2017-10-30 02:11:38 +0100
commit9b03d02c64a27df5ec1d12da52c5f433c3c2c2ac (patch)
tree5e76936ad41b3837abb5f189172fb842c0176500 /testsuite.py
parentf08c676d10945d0055024f943d171458b278bb71 (diff)
Rename Symbol/Choice/MenuNode.config to kconfig
To be consistent with the renamed class. Piggyback docstring fixes.
Diffstat (limited to 'testsuite.py')
-rw-r--r--testsuite.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/testsuite.py b/testsuite.py
index 2e4b2ec..c831624 100644
--- a/testsuite.py
+++ b/testsuite.py
@@ -1336,7 +1336,7 @@ g
verify_value("UNAME_RELEASE", platform.uname()[2])
ur = c.syms["UNAME_RELEASE"]
- verify(ur.config is c and
+ verify(ur.kconfig is c and
ur.type == STRING and
ur.env_var == "<uname release>",
"UNAME_RELEASE has wrong fields")
@@ -1433,11 +1433,11 @@ g
verify((c1_undef is not c2_undef) and (c1_bool is not c2_bool) and
(c1_choice is not c2_choice) and (c1_menu is not c2_menu) and
(c1_comment is not c2_comment) and
- (c1_undef.config is c1) and (c2_undef.config is c2) and
- (c1_bool.config is c1) and (c2_bool.config is c2) and
- (c1_choice.config is c1) and (c2_choice.config is c2) and
- (c1_menu.config is c1) and (c2_menu.config is c2) and
- (c1_comment.config is c1) and (c2_comment.config is c2),
+ (c1_undef.kconfig is c1) and (c2_undef.kconfig is c2) and
+ (c1_bool.kconfig is c1) and (c2_bool.kconfig is c2) and
+ (c1_choice.kconfig is c1) and (c2_choice.kconfig is c2) and
+ (c1_menu.kconfig is c1) and (c2_menu.kconfig is c2) and
+ (c1_comment.kconfig is c1) and (c2_comment.kconfig is c2),
"Config instance state separation or .config is broken")
#