Skip to content

Commit e031df8

Browse files
committed
feature/add_internal_notification_filters: fixed test_notification_filter.
1 parent 2036016 commit e031df8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/model/core/test_notification_filter.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ def test_notification_filter_clear(self):
5050
all_created_notification_filter_url_monetary_account = \
5151
NotificationFilterUrlMonetaryAccountInternal.create_with_list_response().value
5252

53-
self.assertTrue(all_created_notification_filter_push_user)
54-
self.assertTrue(all_created_notification_filter_url_user)
55-
self.assertTrue(all_created_notification_filter_url_monetary_account)
53+
self.assertFalse(all_created_notification_filter_push_user)
54+
self.assertFalse(all_created_notification_filter_url_user)
55+
self.assertFalse(all_created_notification_filter_url_monetary_account)
5656

5757
self.assertEqual(0, len(NotificationFilterPushUserInternal.list().value))
5858
self.assertEqual(0, len(NotificationFilterUrlUserInternal.list().value))

0 commit comments

Comments
 (0)