mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Small fix within TestGetImagesJson
This commit is contained in:
parent
5bec9275c0
commit
ae80c37054
1 changed files with 2 additions and 3 deletions
|
@ -12,7 +12,6 @@ import (
|
|||
"net/http/httptest"
|
||||
"os"
|
||||
"path"
|
||||
"strings"
|
||||
"testing"
|
||||
"time"
|
||||
)
|
||||
|
@ -169,8 +168,8 @@ func TestGetImagesJson(t *testing.T) {
|
|||
t.Errorf("Excepted no image Repository, %s found", images2[0].Repository)
|
||||
}
|
||||
|
||||
if images2[0].Id != GetTestImage(runtime).Id {
|
||||
t.Errorf("Retrieved image Id differs, expected %s, received %d", GetTestImage(runtime).Id, images2[0].Id)
|
||||
if images2[0].Id != GetTestImage(runtime).ShortId() {
|
||||
t.Errorf("Retrieved image Id differs, expected %s, received %s", GetTestImage(runtime).ShortId(), images2[0].Id)
|
||||
}
|
||||
|
||||
// filter=a
|
||||
|
|
Loading…
Reference in a new issue