fixes for failing unit tests after changes
diff --git a/openstack/orchestration/v1/stackresources/requests.go b/openstack/orchestration/v1/stackresources/requests.go
index f33c170..608ce90 100644
--- a/openstack/orchestration/v1/stackresources/requests.go
+++ b/openstack/orchestration/v1/stackresources/requests.go
@@ -8,7 +8,7 @@
// Find retrieves stack resources for the given stack name.
func Find(c *gophercloud.ServiceClient, stackName string) FindResult {
var r FindResult
- _, res.Err = c.Get(findURL(c, stackName), &res.Body, nil)
+ _, r.Err = c.Get(findURL(c, stackName), &r.Body, nil)
return r
}