1
0
mirror of https://github.com/docker/cli.git synced 2026-01-15 07:40:57 +03:00

Fix TestGetInfo when there is more than one image in the test repository

See also #1089, #1072.
Upstream-commit: 6dacbb451f1134ca1c215bd86b74006934468922
Component: engine
This commit is contained in:
Louis Opter
2013-07-01 15:06:08 -07:00
parent 08f73695ab
commit 18ad40a645

View File

@@ -112,6 +112,11 @@ func TestGetInfo(t *testing.T) {
srv := &Server{runtime: runtime}
initialImages, err := srv.runtime.graph.All()
if err != nil {
t.Fatal(err)
}
r := httptest.NewRecorder()
if err := getInfo(srv, APIVERSION, r, nil, nil); err != nil {
@@ -123,8 +128,8 @@ func TestGetInfo(t *testing.T) {
if err != nil {
t.Fatal(err)
}
if infos.Images != 1 {
t.Errorf("Excepted images: %d, %d found", 1, infos.Images)
if infos.Images != len(initialImages) {
t.Errorf("Excepted images: %d, %d found", len(initialImages), infos.Images)
}
}