From 51062a14758a6c73fef7bbc59b5d675bc643f8bb Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Mon, 23 Mar 2015 10:37:32 +1100 Subject: [PATCH] Oops, don't forget to unmount. --- samples/flushfs/flush_fs_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/samples/flushfs/flush_fs_test.go b/samples/flushfs/flush_fs_test.go index d845ce2..0f1337a 100644 --- a/samples/flushfs/flush_fs_test.go +++ b/samples/flushfs/flush_fs_test.go @@ -91,6 +91,9 @@ func (t *FlushFSTest) TearDown() { if t.f2 != nil { ExpectEq(nil, t.f2.Close()) } + + // Finish tearing down. + t.SampleTest.TearDown() } ////////////////////////////////////////////////////////////////////////