diff options
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)) |