From 464201ae129e3f1c552457957eda41b50bc61357 Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Mon, 2 Mar 2015 13:59:32 +1100 Subject: [PATCH] Fixed a build error. --- samples/hellofs/hello_fs_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/hellofs/hello_fs_test.go b/samples/hellofs/hello_fs_test.go index 16edc7a..bd80991 100644 --- a/samples/hellofs/hello_fs_test.go +++ b/samples/hellofs/hello_fs_test.go @@ -14,7 +14,7 @@ import ( "time" "github.com/jacobsa/fuse" - "github.com/jacobsa/fuse/samples" + "github.com/jacobsa/fuse/samples/hellofs" "github.com/jacobsa/gcsfuse/timeutil" . "github.com/jacobsa/oglematchers" . "github.com/jacobsa/ogletest" @@ -50,7 +50,7 @@ func (t *HelloFSTest) SetUp(ti *TestInfo) { } // Mount a file system. - fs := &samples.HelloFS{ + fs := &hellofs.HelloFS{ Clock: &t.clock, }