Skip to content

Commit

Permalink
Update nfinst tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
perost authored and OpenModelica-Hudson committed Jan 22, 2018
1 parent 131a16b commit 81db93b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion flattening/modelica/scodeinst/ImportUnqualified2.mo
Expand Up @@ -17,6 +17,6 @@ end ImportUnqualified2;

// Result:
// class ImportUnqualified2
// Real y = x;
// Real y = 2.0;
// end ImportUnqualified2;
// endResult
6 changes: 3 additions & 3 deletions flattening/modelica/scodeinst/ImportUnqualified3.mo
Expand Up @@ -21,14 +21,14 @@ end ImportUnqualified3;


// Result:
// function f
// function A.B.f
// input Real x;
// output Real y;
// algorithm
// y := x;
// end f;
// end A.B.f;
//
// class ImportUnqualified3
// parameter Real x = f(100.0);
// parameter Real x = A.B.f(100.0);
// end ImportUnqualified3;
// endResult

0 comments on commit 81db93b

Please sign in to comment.