Fix missing rotate argument for deque-attriutes, actually commit unittest updates.

This commit is contained in:
Griatch 2016-09-02 14:32:42 +02:00
parent 4f1515fc72
commit 756d4be4bc
2 changed files with 8 additions and 8 deletions

View file

@ -305,8 +305,8 @@ class _SaverDeque(_SaverMutable):
self._data.reverse()
@_save
def rotate(self):
self._data.rotate()
def rotate(self, *args):
self._data.rotate(*args)
#
# serialization helpers