Skip to content

Commit

Permalink
[NF] Update tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
perost authored and OpenModelica-Hudson committed Jan 29, 2019
1 parent a3987d2 commit d1d8756
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions flattening/modelica/scodeinst/ExtendSections.mo
Expand Up @@ -52,9 +52,9 @@ end ExtendSections;
// b = 2.0;
// y = 2.0;
// initial algorithm
// w := 5.0;
// initial algorithm
// d := 4.0;
// initial algorithm
// w := 5.0;
// equation
// a = 1.0;
// x = 4.0;
Expand Down
2 changes: 1 addition & 1 deletion flattening/modelica/scodeinst/IfExpression2.mo
Expand Up @@ -10,6 +10,6 @@ end IfExpression2;

// Result:
// class IfExpression2
// Real x = /*Real*/(if time > 1.0 then 1 else 2);
// Real x = if time > 1.0 then 1.0 else 2.0;
// end IfExpression2;
// endResult
2 changes: 1 addition & 1 deletion flattening/modelica/scodeinst/IfExpression3.mo
Expand Up @@ -12,6 +12,6 @@ end IfExpression3;
// Result:
// class IfExpression3
// parameter Boolean b = true;
// Real x = /*Real*/(if b then 1 else 2);
// Real x = if b then 1.0 else 2.0;
// end IfExpression3;
// endResult

0 comments on commit d1d8756

Please sign in to comment.