From c8987830b973770c144cd88ed55aed4b4ed10917 Mon Sep 17 00:00:00 2001 From: Soshi Katsuta Date: Fri, 31 Jul 2015 16:34:08 +0900 Subject: [PATCH] libmachine: fix a test to check the host name is right Signed-off-by: Soshi Katsuta --- libmachine/filestore_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libmachine/filestore_test.go b/libmachine/filestore_test.go index f6f09a9a82..407c7583da 100644 --- a/libmachine/filestore_test.go +++ b/libmachine/filestore_test.go @@ -228,7 +228,7 @@ func TestStoreGetSetActive(t *testing.T) { if err != nil { t.Fatal(err) } - if host.Name != host.Name { + if host.Name != hostTestName { t.Fatalf("Active host is not 'test', got %s", host.Name) } }