From 9fbcccfeaddf4b093c10e5a308e07d25a59d68ae Mon Sep 17 00:00:00 2001 From: Gunnar Andersson Date: Tue, 10 Dec 2024 17:41:25 +0100 Subject: [PATCH] test fix --- ifex/model/ifex_ast_introspect.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ifex/model/ifex_ast_introspect.py b/ifex/model/ifex_ast_introspect.py index bb82779..a8f029b 100644 --- a/ifex/model/ifex_ast_introspect.py +++ b/ifex/model/ifex_ast_introspect.py @@ -291,5 +291,6 @@ def _simple_process(arg): print(f"{is_ifex_variant_typedef(y)=}") print(f"The types of y are: {get_variant_types(y)}") print(f"The types of x are: {get_variant_types(x)}") - print(f"The types of variant are: {get_variant_types("variant")}") + s = "variant" + print(f"The types of {s} are: {get_variant_types(s)}")