From d12a25db1c6b3d7879bb3c9d99df80734d696a14 Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Tue, 24 Mar 2015 08:53:11 +1100 Subject: [PATCH] Fixed two build errors. --- samples/flushfs/flush_fs_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/flushfs/flush_fs_test.go b/samples/flushfs/flush_fs_test.go index 88ec590..b528bea 100644 --- a/samples/flushfs/flush_fs_test.go +++ b/samples/flushfs/flush_fs_test.go @@ -633,7 +633,7 @@ func init() { RegisterTestSuite(&FlushErrorTest{}) } func (t *FlushErrorTest) SetUp(ti *TestInfo) { const noErr = 0 - t.flushFSTest.SetUp(ti, bazilfuse.ENOENT, noErr) + t.flushFSTest.setUp(ti, bazilfuse.ENOENT, noErr) } func (t *FlushErrorTest) Close() { @@ -719,7 +719,7 @@ func init() { RegisterTestSuite(&FsyncErrorTest{}) } func (t *FsyncErrorTest) SetUp(ti *TestInfo) { const noErr = 0 - t.flushFSTest.SetUp(ti, noErr, bazilfuse.ENOENT) + t.flushFSTest.setUp(ti, noErr, bazilfuse.ENOENT) } func (t *FsyncErrorTest) Fsync() {