Fixing test
This commit is contained in:
parent
9a316ae1a9
commit
eb2fa74661
|
@ -10,7 +10,7 @@ def test_crud(session):
|
||||||
role = update(role.id, 'role_new', None, [])
|
role = update(role.id, 'role_new', None, [])
|
||||||
assert role.name == 'role_new'
|
assert role.name == 'role_new'
|
||||||
delete(role.id)
|
delete(role.id)
|
||||||
assert get(role.id) == None
|
assert not get(role.id)
|
||||||
|
|
||||||
|
|
||||||
def test_role_get(client):
|
def test_role_get(client):
|
||||||
|
|
Loading…
Reference in New Issue