summaryrefslogtreecommitdiff
path: root/vm0/vm_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'vm0/vm_test.go')
-rw-r--r--vm0/vm_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/vm0/vm_test.go b/vm0/vm_test.go
index 0e8896b..dc0829b 100644
--- a/vm0/vm_test.go
+++ b/vm0/vm_test.go
@@ -20,7 +20,7 @@ func TestEval(t *testing.T) {
}
i.Adot(nodes, os.Getenv("DOT"))
for _, n := range nodes {
- v, err := i.Run(n, "")
- t.Log(v, err)
+ err := i.Run(n, "")
+ t.Log(err)
}
}