Skip to content

Commit

Permalink
Fixing broken unit test on this branch
Browse files Browse the repository at this point in the history
  • Loading branch information
jmlarson1 committed Oct 3, 2017
1 parent fc04ca3 commit 20b4ab0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/tests/unit_tests/test_manager_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ def test_update_history_x_out():
assert True

def make_criteria_and_specs_0():
sim_specs={'sim_f': [np.linalg.norm], 'in':['x'], 'out':[('g',float)], 'params':{}}
gen_specs={'gen_f': [np.random.uniform], 'in':[], 'out':[('x',float),('priority',float)], 'params':{}}
sim_specs={'sim_f': [np.linalg.norm], 'in':['x_on_cube'], 'out':[('f',float),('fvec',float,3)], 'params':{}}
gen_specs={'gen_f': [np.random.uniform], 'in':[], 'out':[('x_on_cube',float),('priority',float)], 'params':{}}
exit_criteria={'sim_max':10}

return sim_specs, gen_specs, exit_criteria
Expand Down

0 comments on commit 20b4ab0

Please sign in to comment.