diff options
Diffstat (limited to 'src/world/agent.test.js')
-rw-r--r-- | src/world/agent.test.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/world/agent.test.js b/src/world/agent.test.js index 5d5828f..d10a43a 100644 --- a/src/world/agent.test.js +++ b/src/world/agent.test.js @@ -13,13 +13,13 @@ test("simple agent decisions", () => { const senses = []; const actions = [ - { size: 1, propose: (agent, head) => [{ agent_changes: [{ agent_id: 3, flags: { act1: head[0] } }] }] }, - { size: 1, propose: (agent, head) => [{ agent_changes: [{ agent_id: 3, flags: { act2: head[0] } }] }] }, + { size: 1, propose: (world, agent, head) => [{ agent_changes: [{ agent_id: 3, flags: { act1: head[0] } }] }] }, + { size: 1, propose: (world, agent, head) => [{ agent_changes: [{ agent_id: 3, flags: { act2: head[0] } }] }] }, ]; expect(agent_decide(lattice, agent, senses, actions)).toEqual([ { ...agent, state: 'state' }, - actions.map((a, idx) => a.propose(null, [idx])).flat(), + actions.map((a, idx) => a.propose(null, null, [idx])).flat(), ]); }); |