Skip to content
Snippets Groups Projects
Commit fa2af410 authored by Botond Baranyi's avatar Botond Baranyi
Browse files

Updated function test with semantic check changes to the 'map' statement


Change-Id: Ie1a5bc598ac8884c405513826062faa043598845
Signed-off-by: default avatarBotond Baranyi <botond.baranyi@ericsson.com>
parent 3e730d70
No related branches found
No related tags found
No related merge requests found
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment