Skip to content

Commit

Permalink
changes in test guide
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentheirendt committed Apr 4, 2017
1 parent 5e081bc commit 4062995
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/guides/TESTGUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ Loop through the solver packages
for k = 1:length(solverPkgs)
fprintf(' -- Running <testFile> using the solver interface: %s ... ', solverPkgs{k});
solverLPOK = changeCobraSolver(solverPkgs{k});
solverLPOK = changeCobraSolver(solverPkgs{k}, 'LP', 0);
if solverLPOK
% <your test goes here>
Expand Down
2 changes: 1 addition & 1 deletion .github/guides/testTemplate.m
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
for k = 1:length(solverPkgs)
fprintf(' -- Running <testFile> using the solver interface: %s ... ', solverPkgs{k});

solverLPOK = changeCobraSolver(solverPkgs{k});
solverLPOK = changeCobraSolver(solverPkgs{k}, 'LP', 0);

if solverLPOK
% <your test goes here>
Expand Down

0 comments on commit 4062995

Please sign in to comment.