From fa2af410b457b70bbc649ffb8beb7bff0cc83bd4 Mon Sep 17 00:00:00 2001 From: Botond Baranyi <botond.baranyi@ericsson.com> Date: Tue, 20 Mar 2018 12:28:42 +0100 Subject: [PATCH] Updated function test with semantic check changes to the 'map' statement Change-Id: Ie1a5bc598ac8884c405513826062faa043598845 Signed-off-by: Botond Baranyi <botond.baranyi@ericsson.com> --- function_test/Semantic_Analyser/TTCN3_SA_10_TD.script | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/function_test/Semantic_Analyser/TTCN3_SA_10_TD.script b/function_test/Semantic_Analyser/TTCN3_SA_10_TD.script index 5a43643c7..d25990046 100644 --- a/function_test/Semantic_Analyser/TTCN3_SA_10_TD.script +++ b/function_test/Semantic_Analyser/TTCN3_SA_10_TD.script @@ -1884,6 +1884,9 @@ type port MyPort message { type component K1 { port MyPort my_port; + + // updated to match change I82560687cdc511433e453a8e971cdc1173a14b06 (needs to be checked) + port ProviderPort provider_port; } type component K2 { @@ -1894,7 +1897,7 @@ testcase TC1() runs on K1 { var K1 k1; var K2 k2; connect(k1:my_port, k2:user_port); - map(k1:my_port, k2:user_port); + map(k1:provider_port, k2:user_port); } } <END_MODULE> -- GitLab