From 45342c3080cc11d26298c733b5dd3ecf08102ceb Mon Sep 17 00:00:00 2001 From: Geoff Hickey Date: Thu, 16 Nov 2017 17:16:10 -0500 Subject: [PATCH] fix another integration test problem. --- libvirt_integration_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libvirt_integration_test.go b/libvirt_integration_test.go index b4e582a..0309787 100644 --- a/libvirt_integration_test.go +++ b/libvirt_integration_test.go @@ -225,7 +225,7 @@ func TestStoragePoolRefreshInvalidIntegration(t *testing.T) { t.Error(err) } - err := l.StoragePoolRefresh(pool, 0) + err = l.StoragePoolRefresh(pool, 0) if err == nil { t.Error("expected non-existent storage pool to fail refresh") }