Fixing tests

This commit is contained in:
kevgliss 2015-08-03 16:15:59 -07:00
parent 710b4d45bc
commit 888e75e7f7
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ def test_crud(session):
notification = create('testnotify', 'email-notification', {}, 'notify1', [])
assert notification.id > 0
notification = update(notification.id, 'testnotify2', {}, 'notify2', [])
notification = update(notification.id, 'testnotify2', {}, 'notify2', True, [])
assert notification.label == 'testnotify2'
assert len(get_all()) == 1