From 9f671c5dd090b4c08704e4f3ac2c9acc5a8173e0 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Tue, 21 Aug 2018 10:58:24 +0100 Subject: [PATCH] fs: fix tests for *SepList --- fs/config_list_test.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/fs/config_list_test.go b/fs/config_list_test.go index 8cb6ae304..7aa1e9eed 100644 --- a/fs/config_list_test.go +++ b/fs/config_list_test.go @@ -24,9 +24,9 @@ func ExampleSpaceSepList() { fmt.Printf("%#v\n", l) } // Output: - // config.SpaceSepList{"remotea:test/dir", "remoteb:"} - // config.SpaceSepList{"remotea:test/space dir", "remoteb:"} - // config.SpaceSepList{"remotea:test/quote\"dir", "remoteb:"} + // fs.SpaceSepList{"remotea:test/dir", "remoteb:"} + // fs.SpaceSepList{"remotea:test/space dir", "remoteb:"} + // fs.SpaceSepList{"remotea:test/quote\"dir", "remoteb:"} } func ExampleCommaSepList() { @@ -40,9 +40,9 @@ func ExampleCommaSepList() { fmt.Printf("%#v\n", l) } // Output: - // config.CommaSepList{"remotea:test/dir", "remoteb:"} - // config.CommaSepList{"remotea:test/space dir", "remoteb:"} - // config.CommaSepList{"remotea:test/quote\"dir", "remoteb:"} + // fs.CommaSepList{"remotea:test/dir", "remoteb:"} + // fs.CommaSepList{"remotea:test/space dir", "remoteb:"} + // fs.CommaSepList{"remotea:test/quote\"dir", "remoteb:"} } func TestSpaceSepListSet(t *testing.T) {