diff options
author | Dimitri Sokolyuk <demon@dim13.org> | 2018-02-12 05:41:05 +0100 |
---|---|---|
committer | Dimitri Sokolyuk <demon@dim13.org> | 2018-02-12 05:41:05 +0100 |
commit | fa6932b65a14f2c74ab61541b8f5cd3b5d44e535 (patch) | |
tree | 1c37e3ed36dc6b2a2fcb6f1089bc052d0e37ceb2 /core_test.go | |
parent | fc3d8ccb1f808cab660750fe4a136e7dd384d36b (diff) |
...
Diffstat (limited to 'core_test.go')
-rw-r--r-- | core_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core_test.go b/core_test.go index 22c4fdb..24972eb 100644 --- a/core_test.go +++ b/core_test.go @@ -120,7 +120,7 @@ func TestEval(t *testing.T) { t.Run(fmt.Sprint(tc.ins), func(t *testing.T) { state := New(&mocConsole{}) for _, ins := range tc.ins { - state.Evaluate(ins) + state.Execute(ins) } cmp(t, *state, tc.end) }) |