Skip to content

Commit

Permalink
Lopb: Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
ssteiger committed May 18, 2019
1 parent 1507e7d commit 52ab241
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,10 @@ contract("linear_optimization_problem_bounty", async accounts => {
x2,
"x2 value wasn't correctly set."
);
// NOTE: update this if the problem in the contract is changed
assert.equal(
instance_bestSolution,
(3 * x1) + (2 * x2),
(4 * x1) + (6 * x2),
"BestSolution value wasn't correctly set."
);
assert.equal(
Expand Down

0 comments on commit 52ab241

Please sign in to comment.