Commit b6290d00 authored by Jakub Sztandera's avatar Jakub Sztandera

Remove errors pointed out by govet

License: MIT
Signed-off-by: default avatarJakub Sztandera <kubuxu@protonmail.ch>
parent 97e48a9f
......@@ -131,7 +131,7 @@ func SubtestNodeStat(t *testing.T, n *Node) {
}
if expected != *actual {
t.Error("n.Stat incorrect.\nexpect: %s\nactual: %s", expected, actual)
t.Errorf("n.Stat incorrect.\nexpect: %s\nactual: %s", expected, actual)
} else {
fmt.Printf("n.Stat correct: %s\n", actual)
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment