diff options
author | Ben Johnson <benbjohnson@yahoo.com> | 2014-07-26 19:41:05 -0600 |
---|---|---|
committer | Ben Johnson <benbjohnson@yahoo.com> | 2014-07-26 19:41:05 -0600 |
commit | bbf2da4c907f8f5234e65d141e4759dc7130fdd7 (patch) | |
tree | 7eb0f18436534cdc463f8c63691d2b1dc3221a81 /node_test.go | |
parent | Remove testify. (diff) | |
download | dedo-bbf2da4c907f8f5234e65d141e4759dc7130fdd7.tar.gz dedo-bbf2da4c907f8f5234e65d141e4759dc7130fdd7.tar.xz |
Fix go vet.
Diffstat (limited to 'node_test.go')
-rw-r--r-- | node_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/node_test.go b/node_test.go index f4bf4af..fa5d10f 100644 --- a/node_test.go +++ b/node_test.go @@ -54,7 +54,7 @@ func TestNode_read_LeafPage(t *testing.T) { // Check that there are two inodes with correct data. if !n.isLeaf { - t.Fatalf("expected leaf", n.isLeaf) + t.Fatal("expected leaf") } if len(n.inodes) != 2 { t.Fatalf("exp=2; got=%d", len(n.inodes)) |