Commit d12a25db authored by Aaron Jacobs's avatar Aaron Jacobs

Fixed two build errors.

parent 2665bd13
...@@ -633,7 +633,7 @@ func init() { RegisterTestSuite(&FlushErrorTest{}) } ...@@ -633,7 +633,7 @@ func init() { RegisterTestSuite(&FlushErrorTest{}) }
func (t *FlushErrorTest) SetUp(ti *TestInfo) { func (t *FlushErrorTest) SetUp(ti *TestInfo) {
const noErr = 0 const noErr = 0
t.flushFSTest.SetUp(ti, bazilfuse.ENOENT, noErr) t.flushFSTest.setUp(ti, bazilfuse.ENOENT, noErr)
} }
func (t *FlushErrorTest) Close() { func (t *FlushErrorTest) Close() {
...@@ -719,7 +719,7 @@ func init() { RegisterTestSuite(&FsyncErrorTest{}) } ...@@ -719,7 +719,7 @@ func init() { RegisterTestSuite(&FsyncErrorTest{}) }
func (t *FsyncErrorTest) SetUp(ti *TestInfo) { func (t *FsyncErrorTest) SetUp(ti *TestInfo) {
const noErr = 0 const noErr = 0
t.flushFSTest.SetUp(ti, noErr, bazilfuse.ENOENT) t.flushFSTest.setUp(ti, noErr, bazilfuse.ENOENT)
} }
func (t *FsyncErrorTest) Fsync() { func (t *FsyncErrorTest) Fsync() {
......
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