Skip to content

Commit

Permalink
Small improvement and bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
irublev committed Nov 11, 2018
1 parent 74ff064 commit b9b4262
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions lib/mlunitext/+mlunitext/test_case.m
Original file line number Diff line number Diff line change
Expand Up @@ -389,6 +389,7 @@ function runAndCheckError(~,commandStr,expIdentifierList,varargin)
feval(commandStr);
end
catch meObj
errMsg = '';
[isIdentMatchVec,identPatternStr] =checkCode(meObj,...
'identifier',expIdentifierList);
[isMsgMatchVec,msgPatternStr] =checkCode(meObj,...
Expand Down
4 changes: 2 additions & 2 deletions products/+gras/+ellapx/+uncertmixcalc/EllApxBuilder.m
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
%
methods
function [ellTubeRel,ellUnionTubeRel]=build(self)
import gras.ellapx.smartdb.rels.EllUnionTubeNotTight;
import gras.ellapx.smartdb.rels.EllUnionTube;
ellTubeRel=self.ellTubeBuilder.getEllTubes();
ellTubeRel.scale(@self.getScaleFactorByApxType,{'approxType'});
ellUnionTubeRel=EllUnionTubeNotTight.fromEllTubes(ellTubeRel);
ellUnionTubeRel=EllUnionTube.fromEllTubes(ellTubeRel);
end
%
function self=EllApxBuilder(confRepoMgr,pDynObj,goodDirSetObj)
Expand Down

0 comments on commit b9b4262

Please sign in to comment.