Commit 1355c00c by Arno Uhlig

fix reader linux test

parent 6b2d9181
...@@ -30,10 +30,11 @@ func TestProvsionedSymlinkedFolder(t *testing.T) { ...@@ -30,10 +30,11 @@ func TestProvsionedSymlinkedFolder(t *testing.T) {
want, err := filepath.Abs(containingId) want, err := filepath.Abs(containingId)
if err != nil { if err != nil {
t.Errorf("expected err to be nill") t.Errorf("expected err to be nil")
} }
if reader.Path != want { resolvedPath := reader.resolvePath(reader.Path)
t.Errorf("got %s want %s", reader.Path, want) if resolvedPath != want {
t.Errorf("got %s want %s", resolvedPath, want)
} }
} }
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