Pass ListOptions to List in ListWatch.

This commit is contained in:
Wojciech Tyczynski
2015-12-02 16:20:48 +01:00
parent 439019cbbb
commit b0fcb5adef
38 changed files with 105 additions and 101 deletions

View File

@@ -32,7 +32,7 @@ type fakeLW struct {
watchResp watch.Interface
}
func (lw fakeLW) List() (runtime.Object, error) {
func (lw fakeLW) List(options unversioned.ListOptions) (runtime.Object, error) {
return lw.listResp, nil
}