From 888e75e7f795f2544a27a77eb4455d51c2479c3f Mon Sep 17 00:00:00 2001 From: kevgliss Date: Mon, 3 Aug 2015 16:15:59 -0700 Subject: [PATCH] Fixing tests --- lemur/tests/test_notifications.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lemur/tests/test_notifications.py b/lemur/tests/test_notifications.py index e66c1984..78fe3053 100644 --- a/lemur/tests/test_notifications.py +++ b/lemur/tests/test_notifications.py @@ -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