From f02cc98b33c89d33f90bc8b63764883b877c7a07 Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Mon, 23 Mar 2015 16:35:42 +1100 Subject: [PATCH] Fixed some build errors. --- samples/flushfs/flush_fs_test.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/samples/flushfs/flush_fs_test.go b/samples/flushfs/flush_fs_test.go index 438c6a2..39b8f9e 100644 --- a/samples/flushfs/flush_fs_test.go +++ b/samples/flushfs/flush_fs_test.go @@ -661,6 +661,8 @@ type NoErrorsTest struct { func init() { RegisterTestSuite(&NoErrorsTest{}) } +func (t *NoErrorsTest) SetUp(ti *TestInfo) + //////////////////////////////////////////////////////////////////////// // Flush error //////////////////////////////////////////////////////////////////////// @@ -671,7 +673,7 @@ type FlushErrorTest struct { func init() { RegisterTestSuite(&FlushErrorTest{}) } -func (t *FlushFSTest) SetUp(ti *TestInfo) +func (t *FlushErrorTest) SetUp(ti *TestInfo) //////////////////////////////////////////////////////////////////////// // Fsync error @@ -683,4 +685,4 @@ type FsyncErrorTest struct { func init() { RegisterTestSuite(&FsyncErrorTest{}) } -func (t *FlushFSTest) SetUp(ti *TestInfo) +func (t *FlushErrorTest) SetUp(ti *TestInfo)