aboutsummaryrefslogtreecommitdiff
path: root/core_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'core_test.go')
-rw-r--r--core_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core_test.go b/core_test.go
index e263136..22c4fdb 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.Eval(ins)
+ state.Evaluate(ins)
}
cmp(t, *state, tc.end)
})