commit | b8b16f82c085caf37ee4dfa14da67a911164a76c | [log] [tgz] |
---|---|---|
author | Ash Wilson <smashwilson@gmail.com> | Mon Oct 20 10:19:49 2014 -0400 |
committer | Ash Wilson <smashwilson@gmail.com> | Mon Oct 20 10:19:49 2014 -0400 |
tree | a6ce8e626441276a19e137398e04512d3e3153de | |
parent | d3dc254a81133743620b6cecf3cfad828af2c2df [diff] [blame] |
Base a pagination.PageResult on gophercloud.Result.
diff --git a/pagination/marker_test.go b/pagination/marker_test.go index e30264c..3b1df1d 100644 --- a/pagination/marker_test.go +++ b/pagination/marker_test.go
@@ -56,8 +56,8 @@ client := createClient() - createPage := func(r LastHTTPResponse) Page { - p := MarkerPageResult{MarkerPageBase{LastHTTPResponse: r}} + createPage := func(r PageResult) Page { + p := MarkerPageResult{MarkerPageBase{PageResult: r}} p.MarkerPageBase.Owner = p return p }