Skip to content

Commit 794f68a

Browse files
committed
Update test_saved_search.py
1 parent 43b60b1 commit 794f68a

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

tests/test_saved_search.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,6 @@ def test_suppress(self):
223223
self.saved_search.unsuppress()
224224
self.assertEqual(self.saved_search['suppressed'], 0)
225225

226-
@pytest.mark.smoke
227226
def test_acl(self):
228227
self.assertEqual(self.saved_search.access["perms"], None)
229228
self.saved_search.acl_update(sharing="app", owner="admin", app="search", **{"perms.read": "admin, nobody"})
@@ -232,7 +231,6 @@ def test_acl(self):
232231
self.assertEqual(self.saved_search.access["sharing"], "app")
233232
self.assertEqual(self.saved_search.access["perms"]["read"], ['admin', 'nobody'])
234233

235-
@pytest.mark.smoke
236234
def test_acl_fails_without_sharing(self):
237235
self.assertRaisesRegex(
238236
ValueError,
@@ -241,7 +239,6 @@ def test_acl_fails_without_sharing(self):
241239
owner="admin", app="search", **{"perms.read": "admin, nobody"}
242240
)
243241

244-
@pytest.mark.smoke
245242
def test_acl_fails_without_owner(self):
246243
self.assertRaisesRegex(
247244
ValueError,

0 commit comments

Comments
 (0)