From 8243f2510e0ff0af8df18bf0febab819529106d4 Mon Sep 17 00:00:00 2001 From: "Guillaume J. Charmes" Date: Mon, 3 Jun 2013 06:44:00 -0700 Subject: [PATCH] Update test to reflect new ApiInfo struct --- api_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api_test.go b/api_test.go index f364c6c89..9121167e1 100644 --- a/api_test.go +++ b/api_test.go @@ -106,8 +106,8 @@ func TestGetInfo(t *testing.T) { if err != nil { t.Fatal(err) } - if infos.Version != VERSION { - t.Errorf("Excepted version %s, %s found", VERSION, infos.Version) + if infos.Images != 1 { + t.Errorf("Excepted images: %d, %d found", 1, infos.Images) } }