Fix TestInitializeCannotStatPathFileNameTooLong

Signed-off-by: Antonio Murdaca <me@runcom.ninja>
This commit is contained in:
Antonio Murdaca 2015-04-15 21:14:54 +02:00
parent 5b048ab2f2
commit 7afb234741
1 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
package volumes package volumes
import ( import (
"strings" "os"
"testing" "testing"
"github.com/docker/docker/pkg/stringutils" "github.com/docker/docker/pkg/stringutils"
@ -33,8 +33,8 @@ func TestInitializeCannotMkdirOnNonExistentPath(t *testing.T) {
t.Fatal("Expected not to initialize volume with a non existent path") t.Fatal("Expected not to initialize volume with a non existent path")
} }
if !strings.Contains(err.Error(), "mkdir : no such file or directory") { if !os.IsNotExist(err) {
t.Fatalf("Expected to get mkdir no such file or directory, got %s", err) t.Fatalf("Expected to get ErrNotExist error, got %s", err)
} }
} }
@ -49,7 +49,7 @@ func TestInitializeCannotStatPathFileNameTooLong(t *testing.T) {
t.Fatal("Expected not to initialize volume with a non existent path") t.Fatal("Expected not to initialize volume with a non existent path")
} }
if !strings.Contains(err.Error(), "file name too long") { if os.IsNotExist(err) {
t.Fatalf("Expected to get ENAMETOOLONG error, got %s", err) t.Fatal("Expected to not get ErrNotExist")
} }
} }