Skip to content
Snippets Groups Projects
Commit 5cca0bbe authored by Ludovic Apvrille's avatar Ludovic Apvrille
Browse files

Fixing pipeline for test

parent c3133e02
No related branches found
No related tags found
No related merge requests found
......@@ -141,7 +141,7 @@ public class AvatarSecurityTranslationTests {
//Setup states
TMLExecC tmlexecc = new TMLExecC("encrypt_sym", null);
tmlexecc.securityPattern = sec;
tmlexecc.setSecurityPattern(sec);
start.addNext(tmlexecc);
task1.getActivityDiagram().addElement(tmlexecc);
......@@ -176,7 +176,7 @@ public class AvatarSecurityTranslationTests {
//Setup states
TMLExecC tmlexecc = new TMLExecC("encrypt_asym", null);
tmlexecc.securityPattern = sec;
tmlexecc.setSecurityPattern(sec);
start.addNext(tmlexecc);
task1.getActivityDiagram().addElement(tmlexecc);
......@@ -202,7 +202,7 @@ public class AvatarSecurityTranslationTests {
//Setup states
TMLExecC tmlexecc = new TMLExecC("encrypt_asym", null);
tmlexecc.securityPattern = sec;
tmlexecc.setSecurityPattern(sec);
start.addNext(tmlexecc);
task1.getActivityDiagram().addElement(tmlexecc);
......@@ -232,7 +232,7 @@ public class AvatarSecurityTranslationTests {
//Setup states
TMLExecC tmlexecc = new TMLExecC("encrypt_mac", null);
tmlexecc.securityPattern = sec;
tmlexecc.setSecurityPattern(sec);
start.addNext(tmlexecc);
task1.getActivityDiagram().addElement(tmlexecc);
......
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